我正在尝试使用正则表达式做一些事情,我想知道如何执行以下操作:接受:
http://google.com
https://google.com
http://google.com/
https://google.com/
http://google.com/*
https://google.com/*
http://*.google.com
https://*.google.com
http://*.google.com/
https://*.google.com/
http://*.google.com/*
https://*.google.com/*
子域通配符只能包含 [az][AZ][0-9] 并且是可选的,但如果它存在,则必须在其后添加一个点。
我来了:
https?://(www.)google.com/
但我认为这不是正确的工作方式......而且只有www。是可用的。我希望有人能给我所需的结果,并解释为什么它会这样工作。
谢谢,
丹尼斯