1

I need to remove from a file name which looks like this:
פניקס תלוש אוקטובר 2024 (2024_10_11 10_44_49 UTC) (the text is in Hebrew)
the string to remove is "(2024_10_11 10_44_49 UTC)"
I have many files like this in many directories.
How can I do it using Powertoys PowerRename?

Thanks

1 Answers1

0

You can use a regular repression to match the datestamp and replace it with nothing.

(\s\(d{4}_\d{2}_\d{2} \d{2}_\d{2}_\d{2} UTC\))

Might work, not sure what the RTL encoding on the Hebrew text will do.

NickSlash
  • 902