Your regular expression, as it's written, probably won't do what you want it to. You'll need to unescape the backslashes first. For example, in Perl you'd use it like:
if ($number =~ /[1-9]\d{2}-[1-9]\d{2}-\d{4}/) {
print "matches!\n";
}
Your regex would then break down as follows:
/[1-9] # Match exactly one of the numbers 1 through 9
\d{2} # Match exactly two digits
- # Match exactly one dash
[1-9] # Match exactly one of the numbers 1 through 9
\d{2} # Match exactly two digits
- # Match exactly one dash
\d{4} # Match exactly four digits
/x
Edit: To show you how your regex as it currently stands works, here's its breakdown:
/[1-9] # Match exactly one of the numbers 1 through 9
\\ # Match exactly one \
d{2} # Match exactly two 'd's
- # Match exactly one dash
[1-9] # Match exactly one of the numbers 1 through 9
\\ # Match exactly one \
d{2} # Match exactly two 'd's
- # Match exactly one dash
\\ # Match exactly one \
d{4} # Match exactly four 'd's
/x
See how much of a difference the double backslashes make?