Remove first or last characters -[Batch Rename improvement]
The developer has already suggested using Regular Expressions to achieve this however to be honest I don't use RegEx and never have even on Windows.
Solid Explorer users are not coders and should not be expected to be.
Furthermore, a simple UI space for Removing first/last characters of a long filename should be implemented, IMO
I have thought about this and have even created a mock-up showing how it could look like within the Batch Rename window. The mock-up shows that it use tap input for the switcher up or down
I hope this could be added.
There are regular expression for that. Use ^.{x} to replace first x characters and .{x}$ to replace last x characters.
-
Konrad Fejs commented
Could you share some examples how to use regex expressions? I tried this one from example above - but this crashed application. ^.{x}
-
CDuke commented