gpt4 book ai didi

javascript - 没有 http、https、ftp 的 url 的正则表达式

转载 作者:可可西里 更新时间:2023-11-01 01:51:32 25 4
gpt4 key购买 nike

我正在寻找接受如下 url 的正则表达式:

http://www.example.com
www.example.com

这是我目前所拥有的,但它的正则表达式不匹配没有 http://https://ftp 的 URL://:

regexp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;

如何使协议(protocol)成为可选的?

最佳答案

使 (ftp|http|https):\/\/ 部分可选:

((ftp|http|https):\/\/)?

关于javascript - 没有 http、https、ftp 的 url 的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4275525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com