indexOf()是TypeScript中的內置函數,用於獲取第一次出現指定值的調用String對象內的索引。句法:
string.indexOf(searchValue[, fromIndex])
參數:該方法接受上麵提到和下麵描述的兩個參數。
- searchValue:此參數是一個字符串,代表要搜索的值。
- fromIndex:此參數是調用字符串中從其開始搜索的位置。
返回值:此方法返回找到的事件的索引,否則返回-1。
下麵的示例說明TypeScriptJS中的String indexOf()方法:示例1:
的JavaScript
<script>
// Original strings
var str1 = new String('TypeScript | \
String indexOf() Method with example');
// use of String indexOf() Method
console.log(str1.indexOf("String"));
</script>
輸出:
13
範例2:
的JavaScript
<script>
// Original strings
var str1 = new String('TypeScript | \
String indexOf() Method with example');
// use of String indexOf() Method
console.log(str1.indexOf("Geeks"));
</script>
輸出:
-1
相關用法
- Typescript Array indexOf()用法及代碼示例
- Javascript String indexOf()用法及代碼示例
- Typescript String charAt()用法及代碼示例
- Typescript String charCodeAt()用法及代碼示例
- Typescript String concat()用法及代碼示例
- Typescript String lastIndexOf()用法及代碼示例
- Typescript String localeCompare()用法及代碼示例
- Typescript String replace()用法及代碼示例
- Typescript String search()用法及代碼示例
- Typescript String slice()用法及代碼示例
- Typescript String substring()用法及代碼示例
- Typescript String valueOf()用法及代碼示例
- Typescript String toString()用法及代碼示例
- Typescript String toUpperCase()用法及代碼示例
- Typescript String toLowerCase()用法及代碼示例
- Typescript String toLocaleUpperCase()用法及代碼示例
- Typescript String toLocaleLowerCase()用法及代碼示例
- Typescript String substr()用法及代碼示例
- Typescript String split()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String indexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。