TypeScript中的charAt()方法用於返回字符串指定索引處的字符。字符串從左到右索引。
用法:
string.charAt( index )
參數:此方法接受如上所述和以下描述的單個參數:
- index:它是小於字符串長度的0到1之間的整數值。
返回值:
以下示例說明了TypeScript中charAt()方法的用法方式:
範例1:
打字稿
// Original string
var str = new String(
'JavaScript is object oriented language');
// Fnding the character at given index
var value = str.charAt(14);
console.log(value);
輸出:
o
範例2:
打字稿
// Original string
var str = new String(
'JavaScript is object oriented language');
// Fnding the character at given index
console.log("str.charAt(0) is:" + str.charAt(0));
console.log("str.charAt(1) is:" + str.charAt(1));
輸出:
str.charAt(0) is:J str.charAt(1) is:a
相關用法
- Javascript String charAt()用法及代碼示例
- Typescript String charCodeAt()用法及代碼示例
- Typescript String concat()用法及代碼示例
- Typescript String indexOf()用法及代碼示例
- 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 charAt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。