描述
这个charAt()JavaScript 的方法返回指定索引中存在的当前字符串的字符。
字符串中的字符从左到右编入索引。第一个字符的索引为0,最后一个字符的索引比字符串的长度小1。 (stringName_length - 1 )
用法
下面给出的是 JavaScript 的 charAt() 方法的语法。我们可以使用 CoffeeScript 代码中的相同方法。
string.charAt(index);
它接受一个表示字符串索引的整数值,并返回指定索引处的字符。
示例
下面的例子演示了使用charAt()CoffeeScript 代码中的 JavaScript 方法。将此代码保存在具有名称的文件中string_charat.coffee
str = "This is string"
console.log "The character at the index (0) is:" + str.charAt 0
console.log "The character at the index (1) is:" + str.charAt 1
console.log "The character at the index (2) is:" + str.charAt 2
console.log "The character at the index (3) is:" + str.charAt 3
console.log "The character at the index (4) is:" + str.charAt 4
console.log "The character at the index (5) is:" + str.charAt 5
打开command prompt并编译 .coffee 文件,如下所示。
c:\> coffee -c string_charat.coffee
在编译时,它会为您提供以下 JavaScript。
// Generated by CoffeeScript 1.10.0
(function() {
var str;
str = "This is string";
console.log("The character at the index (0) is:" + str.charAt(0));
console.log("The character at the index (1) is:" + str.charAt(1));
console.log("The character at the index (2) is:" + str.charAt(2));
console.log("The character at the index (3) is:" + str.charAt(3));
console.log("The character at the index (4) is:" + str.charAt(4));
console.log("The character at the index (5) is:" + str.charAt(5));
}).call(this);
现在,打开command prompt再次运行 CoffeeScript 文件,如下所示。
c:\> coffee string_charat.coffee
在执行时,CoffeeScript 文件产生以下输出。
The character at the index (0) is:T The character at the index (1) is:h The character at the index (2) is:i The character at the index (3) is:s The character at the index (4) is: The character at the index (5) is:i
相关用法
- CoffeeScript String charCodeAt()用法及代码示例
- CoffeeScript String concat()用法及代码示例
- CoffeeScript String slice()用法及代码示例
- CoffeeScript String toUpperCase()用法及代码示例
- CoffeeScript String toLocaleUpperCase()用法及代码示例
- CoffeeScript String match()用法及代码示例
- CoffeeScript String lastIndexOf()用法及代码示例
- CoffeeScript String substr()用法及代码示例
- CoffeeScript String split()用法及代码示例
- CoffeeScript String toLowerCase()用法及代码示例
- CoffeeScript String search()用法及代码示例
- CoffeeScript String localeCompare()用法及代码示例
- CoffeeScript String toLocaleLowerCase()用法及代码示例
- CoffeeScript String indexOf()用法及代码示例
- CoffeeScript Date setHours()用法及代码示例
- CoffeeScript Date setUTCFullYear()用法及代码示例
- CoffeeScript Date getDay()用法及代码示例
- CoffeeScript Date getDate()用法及代码示例
- CoffeeScript Date getYear()用法及代码示例
- CoffeeScript Math pow()用法及代码示例
注:本文由纯净天空筛选整理自 CoffeeScript String - charAt()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。