I’m trying to make this regex ^(?!\-\-\sRoaming) to match with -- Roaming but it doesnt. Am I matching correctly the white space between -- and Roaming ?
I’m trying to make this regex ^(?!\-\-\sRoaming) to match with — Roaming but it
Share
Try this, which won’t match if
-- Roamingis anywhere in the input:Note that you don’t need to escape the hyphens.