How to find « («) in a string

Posted by Arnej65 on Stack Overflow See other posts from Stack Overflow or by Arnej65
Published on 2010-05-19T15:37:54Z Indexed on 2010/05/19 15:40 UTC
Read the original article Hit count: 146

Filed under:

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&#171";
Regex PatternRegex = new Regex(RegExPattern);
return (PatternRegex.Match(Source).Value);

© Stack Overflow or respective owner

Related posts about regex