1

我想要一个与 http 或 https 匹配的字符串的简单正则表达式。我开始:

#^((http|https)://)"

它不起作用。我希望 :// 也在开头,所以我放了双括号。我在正则表达式方面有点新手。希望你能帮助我。

4

2 回答 2

2

尝试

https?:\/\/

意义:

http   - required: "http"
s?     - followed by an optional "s"
:\/\/  - followed by required "://"
于 2013-09-29T11:02:58.520 回答
0

我认为您正在寻找?可选的运算符

/^(https?)?:\/\//

这使得safterhttp和整个组都是可选的,也允许字符串直接以开头://

于 2013-09-29T11:04:54.697 回答