2024年07月30日 建站教程
js用正则同时删除第一个和最后一个斜杠,如果只有第一个斜杠或只有最后一个斜杠也可以用。
方法一:
let arr = ["图像","报告","修改"]; let name = ''; for(let i=0; i<arr.length; i++){ name += arr[i] + '/' }; name = name.replace(/^\/|\/$/g, ""); console.log('结果输出:', name); //结果输出:图像/报告/修改
方法二:
var string = "/图像/报告/修改/"; if (string.charAt(0) == "/") string = string.substr(1); if (string.charAt(string.length - 1) == "/") string = string.substr(0, string.length - 1);
第二种方法有个缺陷,最后一个斜杠一定存在才执行,建议使用第一种方法
本文链接:http://so.lmcjl.com/news/9534/