#1 : 15/05-20 04:28 Rich
Posts: 8
|
Is there anyway to have the program delete everything after the date?
Flirting With Forty 2008 DVDRip XviD-miguel ENG Flying Monsters 2011 480p DiVERSiTY Force 2011 DVDRip 720p x264 AAC-SiNiSTER converted to Flirting With Forty 2008 Flying Monsters 2011 Force 2011 |
#2 : 15/05-20 09:53 David Lee
Posts: 1125
|
Remove pattern .*?\d{4}\K.*
Using Regular expressions This will remove everything following the first 4-digit number |
#3 : 15/05-20 14:32 Rich
Posts: 8
|
Reply to #2:
Thanks, you are a lifesaver!!! |
#4 : 15/05-20 14:50 David Lee
Posts: 1125
|
Reply to #3:
A neater version using the Remove method... Remove count: $ Starting at: \d{4} Use regular expressions |