本文介绍了分隔电子邮件地址的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找一个常规快递来验证如下所示的电子邮件地址列表
i am looking for a regular express to validate a list of email addresses like the following
[email protected];[email protected];[email protected]
和
[email protected];[email protected];[email protected];
可选的;"在列表的末尾.
optional ";" at the end of the list.
谢谢,
推荐答案
来自:http://regexlib.com/RETester.aspx?regexp_id=1007
^(([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+)*$
这篇关于分隔电子邮件地址的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!