Page 1 of 1

Regex Rename ignore extension?

Posted: Mon Jul 11, 2022 1:25 am
by redwood
Can regex ignore extension while renaming?
Some programs have this option to ignore file extension

Re: Regex Rename ignore extension?

Posted: Mon Jul 11, 2022 1:28 am
by void
I will consider an option to ignore extensions.
Thank you for the suggestion.

For now, please setup your old format to match the extension and then include the extension in your new format.

For example:

Old format: ^(.*?)\.([^.]*)$
New format: \1.\2

Re: Regex Rename ignore extension?

Posted: Mon Jul 11, 2022 1:59 am
by redwood
would be a useful option for those who do not know much about regex
thank you!