Javascript replaceメソッドを使って文字列を置換するサンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122(Official Build) (64 ビット)
構文
1.正規表現式で文字列を置換します
'文字列’.replace(/置換前文字/g,’置換後文字’);
replaceメソッドにgオプションを指定して全ての文字列を置換します。
2.文字列の先頭を置換します
'文字列’.replace(/置換前文字/,’置換後文字’);
3.’文字列’.replace('置換前文字’,’置換後文字’);
使用例
const strA = 'arkgame'.replace('e','t'); console.log("先頭の文字列を置換する結果"); console.log(strA); const strB = 'arkgame'.replace(/e/,'t'); console.log(strB); console.log("正規表現で文字列を全て置換する結果"); const strC = 'arkgame'.replace(/a/g,'t'); console.log(strC);
実行結果
> “先頭の文字列を置換する結果"
> “arkgamt"
> “arkgamt"
> “正規表現で文字列を全て置換する結果"
> “trkgtme"