Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要为我的输入生成这样的模式,例如:
+375 29 911-91-91
一般来说,它看起来像这样:
+375 XX XXX-XX-XX
注意空格!
我试过这个:
[\+][\ ]\d{3}[\ ]\d{2}\d{3}[\-]\d{2}[\-]\d{2}
这会在IE中工作吗?
\+\d{3}\s\d{2}\s\d{3}\-\d{2}\-\d{2}
应该管用。您也不需要将方括号 [ 和 ] 放在每个字符周围,除非您想要进行 or [a|b] 测试或者您需要执行一系列字符 [az]。
+\s*\d{3}\s+\d{2}\s+\d{3}-\d{2}-\d{2}