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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。