Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコード:
次のコードを試しました
var str="I like green and want to build a GREENERY Earth with greening!"; var n=str.match(/green/g);
それは結果を与えています
green,green
しかし、私は結果が必要です
green,GREEN,green
つまり、大文字と小文字の両方を一致させたいのです。この場合、全部で 3 つの緑色の単語が見つかりました。
i大文字と小文字の区別を無視するフラグを使用します。
i
var n=str.match(/green/gi); // ^----here it is
デモ