如何在Typescript中使用正则表达式进行电子邮件验证
这个问题在这里已经有了答案:
问题在于给出的正则表达式格式。 给它没有像这样的引号(')
regexp = new RegExp(/^(([^<>()[].,;:s@"]+(.[^<>()[].,;:s@"]+)*)|(".+"))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/);
链接地址: http://www.djcxy.com/p/16501.html
上一篇: How to do Email validation using Regular expression in Typescript