gpt4 book ai didi

javascript - 如何将重复的 'slash' 替换为字符串中的单个斜杠?

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

如何替换字符串中重复的“斜杠”?

例如,

str = '/estate//info//';  
alert(fragment.replace(/\/\/+/, "/"));

结果,

/estate/info//

但我追求的是,​​

/estate/info/

最佳答案

试试这个:

str = '/estate//info//';  
alert(str.replace(/\/\/+/g, "/"));
// where 'g' will do the global search and replace it with single '/'

关于javascript - 如何将重复的 'slash' 替换为字符串中的单个斜杠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17273356/

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