Zero pad first number (1 => 001)
Swap text on either side of a dash (abc - 123 => 123 - abc)
Prefix date modified (Filename.txt => 2024-01-29 - Filename.txt)
Zero pad first number
1 => 001
2 => 002
10 => 010
11 => 011
100 => 100
Format the first number in the filename to have at least 3 digits using zero padding if needed.
Match Case: Disabled
Match Diacritics: Disabled
Regular expressions: Enabled
Ignore extension: Enabled
Old format:
(\d+)(.*)$
New format:
<text:\1,000>\2
Swap text on either side of a dash
abc - 123 => 123 - abc
Match Case: Disabled
Match Diacritics: Disabled
Regular expressions: Enabled
Ignore extension: Enabled
Old format:
^(.*?) - (.*?)$
New format:
\2 - \1
Prefix date modified
Filename.txt => 2024-01-29 - Filename.txt
Match Case: Disabled
Match Diacritics: Disabled
Regular expressions: Disabled
Ignore extension: Enabled
Old format:
%1
New format:
<formatfiletime:$datemodified:,"yyyy-MM-dd"> - %1
If you find any useful presets, please post them here!