标签: regex
请帮助正则表达式只有1个网址。意思是,用户不能提供由逗号或其他分隔符分隔的两个URL。那可能吗?什么是最好的解决方案? 感谢
答案 0 :(得分:1)
请参阅What is the best regular expression to check if a string is a valid URL?
答案 1 :(得分:1)
这里有很多:http://www.regexlib.com/Search.aspx?k=url&c=-1&m=5&ps=20
确保在开头添加^表示字符串的开头,$表示结束。
如果您只需要一个网址,那么用户添加的任何其他网址都会使整个字符串成为无效网址,因此您就赢了。