CoffeeScript 字符串 - charAt()



说明

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

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

语法

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

string.charAt(index);

它接受一个表示 String 索引的整数值,并返回指定索引处的字符。

示例

以下示例演示了在 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_strings.htm
广告