Removing dates from title with regexp

Hi everyone,

many titles I working with contain a date string as "Domingo Santa Cruz - Unión cívica (21-02-1933)"

I would like to remove the date with regexp so that the title should be "Domingo Santa Cruz - Unión cívica" but I can't guess the right string.

Does anyone know a way to solve my problem?

Thank you very much.

Ian

You could try an action of the type "Guess value":
Source: %title%
Target string: %title% (%dummy%)

Or you could try an action of the type "Replace with regular expression"
Search pattern: \s*\(\d+.*\)
Replace string:
(leave empty)

This solution works very fine!

Thank You
Ian

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.