Hi
I want to create an action and replace many expressions in only one action
EX..
replace _2.8M by nothing
replace _5.6M by nothing
replace (Live) BY nothing
replace (bonus) by nothing
etc....
Just want to create an action but do not know how to add them together in the same action
Think there is a Character like ' or / or " to separate them
thank you
poster
2
Why so complicated?
Just define every single action together in an action group.
Action:
Replace with Regular Expression
Field: ?
Regular Expression: (_2.8M|_5.6M|(Live)|(bonus))
Replace Matches with:
? Case-sensitive comparison
This can also be done with the $regexp() function, but I believe the action explains more.