- CoffeeScript 教程
- CoffeeScript - 主页
- CoffeeScript - 概述
- CoffeeScript - 环境
- CoffeeScript - 命令行实用工具
- CoffeeScript - 语法
- CoffeeScript - 数据类型
- CoffeeScript - 变量
- CoffeeScript - 操作符和别名
- CoffeeScript - 条件语句
- CoffeeScript - 循环
- CoffeeScript - 推导式
- CoffeeScript - 函数
- CoffeeScript 面向对象
- CoffeeScript - 字符串
- CoffeeScript - 数组
- CoffeeScript - 对象
- CoffeeScript - 范围
- CoffeeScript - Splat 运算符
- CoffeeScript - 日期
- CoffeeScript - 数学
- CoffeeScript - 异常处理
- CoffeeScript - 正则表达式
- CoffeeScript - 类和继承
- 深入理解 CoffeeScript
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript 实用资源
- CoffeeScript - 快速指南
- CoffeeScript - 实用资源
- CoffeeScript - 讨论
CoffeeScript 字符串 - match()
描述
在使用正则表达式匹配字符串时使用此方法进行匹配。其工作方式类似于 regexp.exec(string),但没有 g 标志,它会以 g 标志返回包含所有匹配项的数组。
语法
以下是 JavaScript 的 match() 方法的语法。我们可以在 CoffeeScript 代码中使用相同的方法。
string.match( param )
示例
下面的示例演示了如何在 CoffeeScript 代码中使用 JavaScript 的 match() 方法。将此代码另存为扩展名为 string_localecompare.coffee 的文件
str = "For more information, see Chapter 3.4.5.1"; re = /(chapter \d+(\.\d)*)/i; found = str.match re console.log found
打开 命令提示符,并按如下所示编译 .coffee 文件。
c:\> coffee -c coffee string_match.coffee
编译后,它会生成以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var found, re, str; str = "For more information, see Chapter 3.4.5.1"; re = /(chapter \d+(\.\d)*)/i; found = str.match(re); console.log(found); }).call(this);
现在,再次打开 命令提示符,并按如下所示运行 CoffeeScript 文件。
c:\> coffee string_match.coffee
执行时,CoffeeScript 文件生成以下输出。
[ 'Chapter 3.4.5.1', 'Chapter 3.4.5.1', '.1', index: 26, input: 'For more information, see Chapter 3.4.5.1' ]
coffeescript_strings.htm
广告