请有人告诉我如何匹配以下模式:
var pattern = "^(?:http(s)?://)?(www\\.)?google\\..*/.*$";
var str = "https://www.google.co.in";
答案 0 :(得分:0)
你会在这里找到一个很好的例子:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match
顺便说一下,你的正则表达式似乎要求一个尾随斜杠。