當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Typescript String lastIndexOf()用法及代碼示例


lastIndexOf()是TypeScript中的內置函數,用於獲取指定值最後一次出現的調用String對象內的索引。句法:

string.lastIndexOf(searchValue[, fromIndex]) 

參數:此方法接受上麵提到和下麵描述的兩個參數:

  • searchValue:此參數是一個字符串,代表要搜索的值。
  • fromIndex:此參數是調用字符串中從其開始搜索的位置。

返回值:此方法返回最後找到的索引,否則返回-1。

範例1:

的JavaScript



<script> 
    // Original strings 
    var str1 = new String('TypeScript | \ 
    String lastIndexOf() Method with example');  
  
    // use of String lastIndexOf() Method 
    console.log(str1.lastIndexOf("String")); 
</script>

輸出:

17

範例2:

的JavaScript

<script> 
    // Original strings 
    var str1 = new String('TypeScript | \ 
    String lastIndexOf() Method with example');  
  
    // use of String lastIndexOf() Method 
    console.log(str1.lastIndexOf("Geeks")); 
</script>

輸出:

-1

相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String lastIndexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。