CoffeeScript 字符串 - charAt()

描述

JavaScript 的 charAt() 方法返回指定索引中存在的当前字符串的字符。

字符串中的字符是从左到右索引的。 第一个字符的索引为 0,最后一个字符的索引比字符串的长度小一个。 (stringName_length - 1 )


语法

下面给出的是 JavaScript 的 charAt() 方法的语法。 我们可以使用 CoffeeScript 代码中的相同方法。

string.charAt(index);

It accepts an integer value representing the index of the String and returns the character at the specified index.


示例

以下示例演示了在 CoffeeScript 代码中使用 JavaScript 的 charAt() 方法。 将此代码保存在名为 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   

打开命令提示符并编译.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); 

现在,再次打开命令提示符 并运行 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 - 字符串