我正在使用我的<input type="tel" />
的模式属性,而我正在使用正则表达式。我尝试了pattern = "d{10]"
和pattern = "d{3}[\)]\d{3}[\-]\d{4}"
,但它不起作用。
答案 0 :(得分:0)
答案 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')