Hi please help me.
I've this problem i want delete some first words that are in TITLE
Example IN : Orquesta Julio De Caro El Monito
Example OUT: El Monito
The words may be : 1 or 2 or 3
It's possible ?
Hi please help me.
I've this problem i want delete some first words that are in TITLE
Example IN : Orquesta Julio De Caro El Monito
Example OUT: El Monito
The words may be : 1 or 2 or 3
It's possible ?
you can delete one, two or 3 words if you specify how many words these are.
Or you define a separator between the data you want to keep and that you want to delete.
E.g. the Example IN looks like there are 2 blanks before the part you want to keep
Replace with regular expression:
Search string: .*__
(the __ are 2 blanks)
Replace string:
(Leave empty)
Thank's 'ohrenkino' but i don't know which is complete regex that delete 2 words before valid text
that i want to keep
Exampe IN : Hi dear ohrenkino
xample OUT: ohrenkino
Remove two words at the left side of the TITLE string ...
$regexp(%TITLE%,'^(.+?\s+){2}',)Remove two words at the right side of the TITLE string ...
$regexp(%TITLE%,'(\s+.+?){2}$',)Remove any text at the left side of the TITLE string before the text 'hi'...
$regexp(%TITLE%,'^.*(hi.*)$','$1')Remove any text at the right side of the TITLE string behind the text 'hi'...
$regexp(%TITLE%,'^(.*hi).*$','$1')DD.20151026.2311.CET
thank's thank's thank's