获取'/‘之前的最后一个值,可以通过以下步骤实现:
以下是一个示例的JavaScript代码实现:
function getLastValueBeforeSlash(url) {
var path = url.split('/'); // 将路径字符串以'/'作为分隔符拆分成数组
var length = path.length;
if (length > 1) {
return path[length - 2]; // 返回倒数第二个元素作为结果
} else {
return path[0]; // 返回唯一的元素作为结果
}
}
var url = "https://www.example.com/path/to/resource/";
var lastValue = getLastValueBeforeSlash(url);
console.log(lastValue); // 输出 'to'
在这个例子中,我们将URL地址"https://www.example.com/path/to/resource/"传递给getLastValueBeforeSlash()函数,它将返回路径中最后一个'/'之前的值,即'to'。
领取专属 10元无门槛券
手把手带您无忧上云