Quote:
Originally Posted by JimmXinu
Multi-reply
Try:
Code:
characters=>\s*(\(Elder Scrolls\)|\(Fallout\)|\(Mass Effect\)|\(Skyrim\))$=>
Note the added parans about to group the fandoms.
Your pattern was "\s(Elder Scrolls)" or "(Fallout)" or ... Also, I added a '*' to the space for the inevitable cases without space or with more than one space
|
That worked

Thank you. Its weird that Regex101 showed it should match.