「Google Apps Script」indexOf メソッドで文字列を先頭から検索するサンプル

構文
対象文字列.indexOf(検索する文字列)
引数1は、検索する文字列です。
該当の文字がないときは-1を返します。
先頭の1文字目の位置は0です。
文字列を先頭から検索して出現した位置を返します。

使用例

function myFunction() {
  const strA = "study";
  console.log(strA.indexOf("s")); 
  console.log(strA.indexOf("t"));
  console.log(strA.indexOf("u")); 
  console.log(strA.indexOf("stud")); 
  console.log(strA.indexOf("ark")); 
}

実行結果

0
1
2
0
-1

 

Google Apps Script

Posted by arkgame