我有两个变量:

site1 = "www.somesite.com";  
site2 = "www.somesite.com/";  

我想做这样的事情

function someFunction(site)
{
    // If the var has a trailing slash (like site2), 
    // remove it and return the site without the trailing slash
    return no_trailing_slash_url;
}

我怎么做呢?


当前回答

试试这个:

function someFunction(site)     
{     
    return site.replace(/\/$/, "");
} 

其他回答

如果你正在使用URL,那么你可以使用内置的URL类

const url = new URL('https://foo.bar/');
console.log(url.toString()); // https://foo.bar
function someFunction(site) {
  if (site.indexOf('/') > 0)
    return site.substring(0, site.indexOf('/'));
  return site;
}

我所知道的最简单的方法是:

function stripTrailingSlash(str){
   if(str.charAt(str.length-1) == "/"){ str = str.substr(0, str.length - 1);}
   return str
}

更新ES2015版本。

const stripTrailingSlash = str=>str.charAt(str.length-1)=="/"?str.substr(0,str.length-1):str;

这将检查末尾的/,如果它在那里,就删除它。如果不是,它会返回你的字符串。

修正了字符串上从零开始索引的计算。

编辑: 因为对一个响应有一个注释,现在有更多的人做同样的事情,不使用子字符串进行比较,你在内存中创建了一个全新的字符串(在低级别),当你可以使用charAt来获得一个更少的内存来进行比较时,Javascript仍然是JIT,不能做任何编译器都可以做的优化,它不会为你修复这个问题。

我会使用正则表达式:

function someFunction(site)
{
// if site has an end slash (like: www.example.com/),
// then remove it and return the site without the end slash
return site.replace(/\/$/, '') // Match a forward slash / at the end of the string ($)
}

但是,您需要确保变量site是一个字符串。

我知道这个问题是关于尾随斜杠,但我在搜索修剪斜杠(在字符串字面量的尾部和头部)时发现了这篇文章,因为人们需要这个解决方案,我在这里发布了一个:

'///I am free///'.replace(/^\/+|\/+$/g, ''); // returns 'I am free'

更新:

正如@Stephen R在评论中提到的,如果你想在字符串字面量的尾部和头部同时删除斜杠和反斜杠,你可以这样写:

'\/\\/\/I am free\\///\\\\'.replace(/^[\\/]+|[\\/]+$/g, '') // returns 'I am free'