正则表达式手机(555)555-9087

时间:2013-02-01 15:34:42

标签: html regex html5

我正在使用我的<input type="tel" />的模式属性,而我正在使用正则表达式。我尝试了pattern = "d{10]"和pattern = "d{3}[\)]\d{3}[\-]\d{4}",但它不起作用。

2 个答案:

答案 0 :(得分:0)

请改用:

pattern="\(\d{3}\) \d{3}-\d{4}"

这是小提琴:http://jsfiddle.net/ZMaXA/
尝试弄乱input

中的值

答案 1 :(得分:0)

Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> str='(777) 777-9087'
>>> r=re.search('\(([^\)]+)\)\s*(\d+-\d+)',str)
>>> r.groups()
('777', '777-9087')