「Google Apps Script」正規表現式でマッチしたもの大文字と小文字の区別をしないサンプル
構文
const 変数名 = /正規表現式/i
対象文字列.replace(変数名, “置換文字")
正規表現のオプションが「i」を指定して、マッチしたものは大文字と小文字の区別をしない
使用例
function myFunction() { const strA = "testテスト"; const regA = /[a-z]{3}/i; console.log(strA.replace(regA, "**")); const strB = "testテスト"; const regB = /[A-Z]{3}/i; console.log(strB.replace(regB, "★★")); }
実行結果
**tテスト
★★tテスト