How to find « («) in a string
- by Arnej65
I need to find « in a string with a regex. How would you add that into the following:
String RegExPattern = @"^[0-9a-df-su-z]+\.\s«";
Regex PatternRegex = new Regex(RegExPattern);
return (PatternRegex.Match(Source).Value);