gpt4 book ai didi

JavaScript:正则表达式 index.html 超出 URL

转载 作者:行者123 更新时间:2023-11-28 16:14:08 25 4
gpt4 key购买 nike

如何去掉一组 URL 中的 index.html 部分,例如

http://google.de/test/images/index.html
http://google.de/test1/green/hot/greetings/index.html

最佳答案

为什么是正则表达式?只需 theUrl.replace('index.html',''); 就可以了,不是吗?

如果您的输入多次出现子字符串,则执行 theInput.split('index.html').join(''); 可能会更快。当然,如果您的源字符串仅包含两次或三次出现,则可以使用正则表达式:

theInput.replace(/index\.html/g,'');

其中gglobal标志,意味着所有匹配都将被替换

关于JavaScript:正则表达式 index.html 超出 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12041585/

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