| Article: |
Five Habits for Successful Regular Expressions | |
| Subject: | US phone numbers | |
| Date: | 2003-08-29 12:20:26 | |
| From: | anonymous2 | |
|
Matching phone numbers can be tricky (it's a great exercise for 'fuzzy logic' via regexps in Perl). I've cut that gordian knot in the past by sidestepping the formatting issue:
|
||
Showing messages 1 through 3 of 3.
-
more appropriately ...
2003-08-29 12:31:01 anonymous2 [View]
-
more appropriately ...
2003-11-08 10:42:06 anonymous2 [View]
how to use regular expression to search
all digits of the pattern in MYSQL
X-XX-X
XX-XX-X
XXX-XX-X
XXXX-XX-X
XXXXX-XX-X
I tried
mysql> select * from database where field regexp "(\d{2,5}-\d{2}-d{1});
seems not working
regards
M.Karthikeyan
pl. mail:
karthik@email.unc.edu
-
more appropriately ...
2004-01-12 08:36:19 anonymous2 [View]
it works with
mysql> select count(*) from database where field1 regexp "[[:digit:]]{2,6}-[[:digit:]]{2}-[[:digit:]]{1}";



if ($phone =~ m/^ # beginning of string
(\d{3})? # maybe an area code
(\d{7}) # definitely 7 digits
$ # end of string
/x) {
Krishna Sethuraman