Page 1 of 1

remove date

PostPosted: Mon Sep 30, 2019 11:03 am
by abedooo
hello
i've many files format such

myfile 22.05.2019 .mp4
myfile 19.05.13.mp4


i want to remove date

Re: remove date

PostPosted: Tue Oct 01, 2019 2:08 am
by Admin
i.e. remove everything after the last space?

Re: remove date

PostPosted: Tue Oct 01, 2019 6:24 pm
by therube
Depending on what you actually have on your end, perhaps...

1:RegEx
Code: Select all
Match:  (.*?)\s+(\d\d\.\d\d\.\d{2,4})
Replace:  \1



That would not match names that start with a year.