- CoffeeScript 教程
- CoffeeScript - 主页
- CoffeeScript - 概览
- CoffeeScript - 环境
- CoffeeScript - 命令行实用程序
- CoffeeScript - 语法
- CoffeeScript - 数据类型
- CoffeeScript - 变量
- CoffeeScript - 运算符和别名
- CoffeeScript - 条件
- CoffeeScript - 循环
- CoffeeScript - 推导
- CoffeeScript - 函数
- CoffeeScript 面向对象
- CoffeeScript - 字符串
- CoffeeScript - 数组
- CoffeeScript - 对象
- CoffeeScript - 范围
- CoffeeScript - 无序列表
- CoffeeScript - 日期
- CoffeeScript - 数学
- CoffeeScript - 异常处理
- CoffeeScript - 正则表达式
- CoffeeScript - 类和继承
- CoffeeScript 高级
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript 的有用资源
- CoffeeScript - 快速指南
- CoffeeScript - 有用资源
- CoffeeScript - 讨论
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
广告