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.
在域名中查找子字符串www.的正则表达式是什么。http://
www.
http://
基本上我正在编写一个 MVC 验证来禁止包含 www.,http://或其中的单词http://www.。
http://www.
尝试:
Regex.IsMatch(myString, @"(www\.|http://)");
如果您想指定它们在字符串的开头不允许,但在其他地方允许它们,请使用:
Regex.IsMatch(myString, @"^(www\.|http://)");