Yes, there is much documentations for learning the regex here...
http://www.bulkrenameutility.co.uk/foru ... p?f=3&t=96If only wanting to match
2 starting digits, followed by
. or
, and then a space, the "Match" and "Replace" would be...
^\d{2}[
.,] .+? - (.+)
\1
But to only destroy the first "-" and everything before, Remove(5) uses "Crop"==
Special, and to the right is
*-Or the RegEx(1) could use a "Match" like
.*?-(.+) with a "Replace" like
\1