gpt4 book ai didi

javascript - 删除重复的斜杠和尾部斜杠

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:02:23 25 4
gpt4 key购买 nike

如何使用正则表达式删除重复的斜杠和尾部斜杠?
例如:
原始网址:

http://localhost:8080////app//user/login///  

http://localhost:8080/app/user/login

最佳答案

这是一个简单的基于正则表达式的方法。

var url = 'http://localhost:8080////app//user/login///';

var sanitized = url
.replace(/^http\:\/\//, '') // remove the leading http:// (temporarily)
.replace(/\/+/g, '/') // replace consecutive slashes with a single slash
.replace(/\/+$/, ''); // remove trailing slashes

url = 'http://' + sanitized;

// Now url contains "http://localhost:8080/app/user/login"

关于javascript - 删除重复的斜杠和尾部斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30845032/

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