「Google Apps Script」replaceメソッドで文字列の中にある半角空白取り除くサンプル

構文
対象文字列.replace (文字or 正規表現 , 置換後の文字);
指定した1文字を別の1文字に置換します。

文字列.replace(/\s/g, “");
引数1を半角空白(正規表現)にして、引数2を空文字にします。
文字列の中にある半角空白を取り除きます。

使用例

function myFunction() {
  // 半角空白あり
  const strA = " 山田太郎 test  "; 
  
  const res = strA.replace(/\s/g, "");

  console.log(res); 
}

実行結果
山田太郎test

Google Apps Script

Posted by arkgame