「Google Apps Script」lastIndexOfメソッドで文字列を末尾から検索するサンプル
構文
対象文字列.lastIndexOf(検索する文字列)
先頭の1文字目の位置は0です。
文字列を末尾から検索して出現した位置を返します。
引数1は、検索する文字列です。
該当の文字がないときは-1を返します。
使用例
function myFunction() { const target = "studyskill"; console.log(target.lastIndexOf("s")); console.log(target.lastIndexOf("t")); console.log(target.lastIndexOf("u")); console.log(target.lastIndexOf("stu")); console.log(target.lastIndexOf("arkga")); }
実行結果
5 1 2 0 -1