What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?
Not tested…
^Bus\sStop\s\((\w)\)\sor\((\w)\)$
The \s can just written as a space though the above seems clearer in email (though it allows for non-space whitespace too)
David J.
What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?