LoginSignup
1
0

More than 3 years have passed since last update.

String.prototype.replaceAll

Posted at

既存のString.prototype.replace()では、正規表現の/gオプションを使わなければ、マッチした始めの1単語しか変換されませんでした。

    "ippai".replace("i", "o")
    // => "oppai"
    "ippai".replace(/i/g, "o")
    // => "oppao"

ES2021で追加されたString.prototype.replaceAll()を使えば、正規表現を使わなくてもマッチしたすべての単語を変換することができます。

    "ippai".replaceAll("i", "o")
    // => "oppao"
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0