「JavaScript入門」replace()で文字列を置換するサンプル
1.テキストを置き換え
“11 22 33 44".replace(/ /g, 'x’); // “11x22x33x44"
2.特殊な文字を置換
“21.22.23.24".replace(/\./g, 'x’); // “21x22x23x24"
3.new RegExp()
cft = “TOHOKU";
re = new RegExp(“OK", “i");
if (cft.match(re)) {
console.log(“OKを含んでいます。");
}