This regex pattern matches any string that contains 'NBC - NBCU' with any characters before and after it. The \s matches any whitespace character.
Interactive Regex Playground
.*NBC\s-\sNBCU.*
This regex pattern matches any string that contains 'NBC - NBCU' with any characters before and after it. The \s matches any whitespace character.
Matches
Found 0 matches