You are not logged in.
Pages: 1
how can i move all items enclosed in parenthesis including the parenthesis to a new location in the filename
want to change filename from
practice garbage (12345678)
to
practice (12345678) garbage
which rule can be used to do this ?
am new to all this....can you show me example fot the above...thanks
Last edited by GaryFos (2024-11-19 12:28)
Offline
You can do this with a Regular Expressions rule by replacing expression "(\w+)\s+(\w+)\s+(\(\d+\))" with "$1 $3 $2".
Offline
Pages: 1