1. ホーム
  2. ジャバスクリプト

[解決済み】末尾のスラッシュを除いた文字列を返す

2022-04-08 19:58:08

質問

2つの変数があります。

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(/\/$/, "");
}