Renaming of files with variables
If I have files sorted like this:
Name_9.webm
Name_9b.webm
Name_10.webm
Name_10b.webm
Name_10c.webm
And I want to sort them like this:
Name 9.webm
Name 9B.webm
Name 10.webm
Name 10B.webm
Name 10C.webm
How can I do that? It's important that the letters that go after the numbers must be all capital letters Thanks for answering my question
Let me know if more context is needed. :)
Name_9.webm
Name_9b.webm
Name_10.webm
Name_10b.webm
Name_10c.webm
And I want to sort them like this:
Name 9.webm
Name 9B.webm
Name 10.webm
Name 10B.webm
Name 10C.webm
How can I do that? It's important that the letters that go after the numbers must be all capital letters Thanks for answering my question
Let me know if more context is needed. :)
Reply to #1:
Hi Rico,
You need to use the 'Replace' method with regular expressions.
Replace: (.*)_(.*)
Replace with: $1 \U$2
Regular expression: checked
See the image below:
https://i.postimg.cc/Hkn2dZHN/img199.png
Hi Rico,
You need to use the 'Replace' method with regular expressions.
Replace: (.*)_(.*)
Replace with: $1 \U$2
Regular expression: checked
See the image below:
https://i.postimg.cc/Hkn2dZHN/img199.png