「Google Apps Script」trimEndで末尾の空白を取り除く

構文
文字列.trimEnd()
文字列の末尾の空白を取り除きます。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function myFunction() {
// 半角空白あり
const strA = "test 5845 ";
console.log(strA.length);
console.log(strA.trimEnd());
console.log(strA.trimEnd().length);
// 全角空白あり
const strB = "gg 9876 ";
console.log(strB.length);
console.log(strB.trimEnd());
console.log(strB.trimEnd().length);
}
function myFunction() { // 半角空白あり const strA = "test 5845 "; console.log(strA.length); console.log(strA.trimEnd()); console.log(strA.trimEnd().length); // 全角空白あり const strB = "gg 9876 "; console.log(strB.length); console.log(strB.trimEnd()); console.log(strB.trimEnd().length); }
function myFunction() {
  // 半角空白あり
  const strA = "test 5845  "; 
  console.log(strA.length); 
  console.log(strA.trimEnd()); 
  console.log(strA.trimEnd().length); 

  // 全角空白あり
  const strB = "gg 9876 "; 
  console.log(strB.length); 
  console.log(strB.trimEnd()); 
  console.log(strB.trimEnd().length); 
}

実行結果
11
test 5845
9
8
gg 9876
7

Google Apps Script

Posted by arkgame