PLZ help - How can i remove the letters?

Advanced Renamer forum
#1 : 13/07-15 06:00
usaqmuri-
usaqmuri-
Posts: 2
Hi

How can i remove the letters before the file extension?
note: if the file name contains only one word - leave as is, like this:


from:

rti.png

elma vt vti.png

1 plus ua1 ua.png



to:


rti.png

elma vt.png

1 plus ua1.png




Thanks in advance ;)


13/07-15 06:00
#2 : 14/07-15 20:33
Tester123
Tester123
Posts: 92
Reply to #1:

Try this Replace Method:

Text to be replaced: (.*)( .*)
Replace with: \1
Use regular expression: Tick.

Note: there is a space just after the second (. This space is used to determine the last word in the name.

Summary: Define a group '( .*)' that capture the last space and any following characters. Define another group that captures everything before that '(.*)'. Replace with only this group, ignoring the other one.


14/07-15 20:33
#3 : 15/07-15 03:49
usaqmuri-
usaqmuri-
Posts: 2
Reply to #2:

Its working :)

thanks


15/07-15 03:49