「Google Apps Script」trimEndで末尾の空白を取り除く
構文
文字列.trimEnd()
文字列の末尾の空白を取り除きます。
使用例
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