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.
我有每个输入的正则表达式,我想向用户展示正确输入值的示例。
正则表达式:
^\+[0-9]{1,3}\.[0-9]{10,19}
为用户显示:
+0.1234567890
可能有人知道我任务的插件吗?
使用 RegExp 对象的“源”属性。此属性包含 RegExp 的文本
var regexp = /^\+[0-9]{1,3}\.[0-9]{10,19}/; document.write("The RegExp is: "+regexp.source);
它显示 => 正则表达式为:^+[0-9]{1,3}.[0-9]{10,19}
来源:JavaScript RegExp 源属性