How can I remove this pattern

Advanced Renamer forum
#1 : 24/11-16 08:56
Yu Jin
Yu Jin
Posts: 1
Hi as stated in the image how do I remove the words after the pattern "the flash SXEXX"
what i want to remove is the description after "the flash SXEXX"

https://s13.postimg.org/cgu2j2cvb/Capture.png


24/11-16 08:56 - edited 24/11-16 08:57
#2 : 26/11-16 19:10
G. Lambany
G. Lambany
Posts: 187
Reply to #1:
method: Replace
Text to be replaced: (^.+?)(S\d{1,2}E\d{1,3}).*
Replace With: \1\2
Occurence: 1st
case sensitive: unchecked
use regular expression: checked
apply to: name


26/11-16 19:10
#3 : 06/12-16 14:08
Peter
Peter
Posts: 3
Reply to #2:
This is where my requested function of "Method Length" would make it very easy.
(see my post)


06/12-16 14:08
#4 : 11/12-16 18:16
Aaron
Aaron
Posts: 11
Reply to #1:

Text to be replaced: T(.*?)(\.).*
Replace With: T\1
Occurence: all
case sensitive: unchecked
use regular expression: checked
apply to: name


Should work too


11/12-16 18:16