Quote:
Originally Posted by JimmXinu
R(.*)?$ is matching 'Rated' and replacing it with Mature.
Applying grouping forces it to treat the $ anchor for the whole pattern, not just the last part:
Code:
rating=>^(FR18|M(ature)?|R(.*)?)$=>Mature
|
That does the trick! Thanks for the quick answer