gpt4 book ai didi

JavaScript:链接 URL,但从显示的链接文本中删除 'http://'

转载 作者:行者123 更新时间:2023-12-02 18:08:10 24 4
gpt4 key购买 nike

在 JavaScript 正则表达式中,例如如何转入

Check out http://example.com/foobar#123

进入

Check out <a href="http://example.com/foobar#123">example.com/foobar#123</a>

谢谢!

最佳答案

使用此替换调用:

s = 'Check out http://example.com/foobar#123';
repl = s.replace(/(https?:\/\/(\S+))/i, "<a href='$1'>$2</a>");
//=> Check out <a href='http://example.com/foobar#123'>example.com/foobar#123</a>

关于JavaScript:链接 URL,但从显示的链接文本中删除 'http://',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19927495/

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