1. ホーム
  2. javascript

[解決済み] URLの先頭にある文字列を削除する

2022-04-25 05:04:26

質問

を削除したいのですが。 www. URL の文字列の先頭の " 部分

例えばこんなテストケースで。

www.test.comtest.com

www.testwww.comtestwww.com

testwww.comtestwww.com (存在しない場合)

Regexpを使用する必要がありますか、またはスマートな関数がありますか?

どのように解決するのですか?

あなたが何を必要としているかによりますが、あなたはいくつかの選択肢を持っている、あなたが行うことができます。

// this will replace the first occurrence of "www." and return "testwww.com"
"www.testwww.com".replace("www.", "");

// this will slice the first four characters and return "testwww.com"
"www.testwww.com".slice(4);

// this will replace the www. only if it is at the beginning
"www.testwww.com".replace(/^(www\.)/,"");