Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an issue with the regular expressions I'm using but don't know how to continue with them. I get the error "unrecognized escape sequence".

I am trying to list out all files that could have a phone number in the formats listed in the code below

static void Main(string[] args)

    {
        //string pattern1 = "xxx-xxx-xxxx";
        //string pattern2 = "xxx.xxx.xxxx";
        //string pattern3 = "(xxx) xxx-xxxx";

        string[] fileEntries = Directory.GetFiles(@"C:\BTISTestDir");

        foreach (string filename in fileEntries)
        {
            StreamReader reader = new StreamReader(filename);
            string content = reader.ReadToEnd();
            reader.Close();

            string regexPattern1 = "^(\d{3}\.){2}\d{4}$";
            string regexPattern2 = "^((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}$";

            if(Regex.IsMatch(content, regexPattern1))
                Console.WriteLine("File found: " + filename);
            if(Regex.IsMatch(content, regexPattern2))
                Console.WriteLine("File found: " + filename);
        }

        Console.WriteLine(Environment.NewLine + "Finished");
        Console.ReadLine();
    }

Any help is much appreciated.

share|improve this question
Save yourself some trouble and use (?:\(\d{3}\)|\d{3})[\s\.-]\d{3}[\.-]\d{4} – Brad Christie May 27 '11 at 16:42

2 Answers

up vote 9 down vote accepted

Use @ to make the strings no longer use the escape character \:

        string regexPattern1 = @"^(\d{3}\.){2}\d{4}$";
        string regexPattern2 = @"^((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}$";

As a side note, I think you want the two ifs at the end to be a single if with an or (||) between the two conditions.

share|improve this answer
1  
The @ is in the wrong place... – KennyTM May 27 '11 at 16:37
1  
LOLOLOLOLOLOLOL this is too funny – leppie May 27 '11 at 16:37
1  
Guess I need a 3rd coffee.. – Blindy May 27 '11 at 16:38
I could be wrong, and this may be a new format, but a string literal needs the @ before the quote, not the variable name. – Brad Christie May 27 '11 at 16:38
@Blindy: You can be lucky there is no changelog for the answer yet ;p – leppie May 27 '11 at 16:39
show 6 more comments

The problem is not the regex, but the string. Before compiling it to a regex with the call to IsMatch(), the text you enter is still a normal string and it must obey the language rules.

\d in your language is not a recognized escape sequence, hence the error. You can either double backslashes (\ is the escape sequence to get a ) or, as Blindy pointed out, you can prefix your constant strings with a @, telling the compiler that it should not try to interpret anything looking like an escape sequence to it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.