「Google Apps Script」substringで文字列の後ろから切り出す方法

構文
文字列.substring(文字列.length – 数値)
lengthで文字列の長さを取得して引き算します。
最初の1文字目の位置は0から始まります。
引数が1つの場合は、「開始位置」から最後の文字までの新しい文字列を返します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function myFunction() {
const str = "テストデータtokyo";
console.log(str.substring(str.length - 1));
console.log(str.substring(str.length - 2));
console.log(str.substring(str.length - 3));
}
function myFunction() { const str = "テストデータtokyo"; console.log(str.substring(str.length - 1)); console.log(str.substring(str.length - 2)); console.log(str.substring(str.length - 3)); }
function myFunction() {
   const str = "テストデータtokyo";

  console.log(str.substring(str.length - 1)); 
  console.log(str.substring(str.length - 2)); 
  console.log(str.substring(str.length - 3)); 
}

実行結果
o
yo
kyo

Google Apps Script

Posted by arkgame