「Google Apps Script」endsWithメソッドで文字の終わりを判定するサンプル

構文
対象文字列.endsWith(検索する文字列)
文字列が指定した引数で終わっていればtrueを返します。それ以外の場合はfalseを返します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function myFunction() {
const strA = "study";
if (strA.endsWith("dy")) {
console.log("YES");
} else {
console.log("NO");
}
}
function myFunction() { const strA = "study"; if (strA.endsWith("dy")) { console.log("YES"); } else { console.log("NO"); } }
function myFunction() {
  const strA = "study";
  
  if (strA.endsWith("dy")) {
      console.log("YES");
  } else {
      console.log("NO"); 
  }
}

実行結果
YES

Google Apps Script

Posted by arkgame