您的位置:58脚本 > typescript 字符串 TypeScript 字符串charAt()方法

typescript 字符串 TypeScript 字符串charAt()方法

2023-03-31 21:32 TypeScript教程

typescript 字符串 TypeScript 字符串charAt()方法

typescript 字符串 TypeScript 字符串charAt()方法

typescript 字符串

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
阅读全文
以上是58脚本为你收集整理的typescript 字符串 TypeScript 字符串charAt()方法全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS