TypeScript 字符串charAt()方法
2019-01-10 16:46 更新
TypeScript 字符串charAt()方法
charAt()是一个从指定索引返回字符的方法。字符串中的字符从左到右编制索引。第一个字符的索引是0,字符串中最后一个字符的索引(称为stringName)是stringName.length - 1。
语法
string.charAt(index);
参数详情
index - 小于字符串长度的0到1之间的整数。
返回值
var str = new String("This is string"); console.log("str.charAt(0) is:" + str.charAt(0)); console.log("str.charAt(1) is:" + str.charAt(1)); console.log("str.charAt(2) is:" + str.charAt(2)); console.log("str.charAt(3) is:" + str.charAt(3)); console.log("str.charAt(4) is:" + str.charAt(4)); console.log("str.charAt(5) is:" + str.charAt(5));
在编译时,它将在JavaScript中生成相同的代码。
其输出如下:
str.charAt(0) is:T str.charAt(1) is:h str.charAt(2) is:i str.charAt(3) is:s str.charAt(4) is: str.charAt(5) is:i
以上内容是否对您有帮助:
更多建议: