This is a pretty simple question but I'm somewhat stumped.
I am capturing sections of text that match "xxxxxxxxxx". It works fine.
string pattern = "(?<quotePair>\"[^/\"]*\")";
Now I want to make a new pattern to capture “xxxxxxxxxx”... I used:
string pattern2 = "(?<lrquotePair>“[^/\"“]*”)";
For some reason the second pattern won't catch anything. What am I missing?