- 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 - 正则表达式
正则表达式是描述 JavaScript 支持的字符模式的对象。在 JavaScript 中,RegExp 类表示正则表达式,String 和 RegExp 都定义了使用正则表达式对文本执行强大的模式匹配以及搜索和替换功能的方法。
CoffeeScript 中的正则表达式
CoffeeScript 中的正则表达式与 JavaScript 相同。访问以下链接查看 JavaScript 中的正则表达式 - javascript_regular_expressions
句法
CoffeeScript 中的正则表达式是通过将 RegExp 模式放置在正斜杠之间来定义的,如下所示。
pattern =/pattern/
例子
以下是 CoffeeScript 中正则表达式的示例。在这里,我们创建了一个表达式,用于查找粗体数据(<b> 和 </b> 标记之间的数据)。将此代码保存在名为regex_example.coffee的文件中
input_data ="hello how are you welcome to <b>Tutorials Point.</b>" regex = /<b>(.*)<\/b>/ result = regex.exec(input_data) console.log result
打开命令提示符并编译 .coffee 文件,如下所示。
c:\> coffee -c regex_example.coffee
编译时,它会给出以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var input_data, regex, result; input_data = "hello how are you welcome to <b>Tutorials Point.</b>"; regex = /<b>(.*)<\/b>/; result = regex.exec(input_data); console.log(result); }).call(this);
现在,再次打开命令提示符并运行 CoffeeScript 文件,如下所示。
c:\> coffee regex_example.coffee
执行时,CoffeeScript 文件会产生以下输出。
[ '<b>Tutorials Point.</b>', 'Tutorials Point.', index: 29, input: 'hello how are you welcome to <b> Tutorials Point.</b>' ]
赫雷吉克斯
我们使用 JavaScript 提供的语法编写的复杂正则表达式是不可读的,因此为了使正则表达式更具可读性,CoffeeScript 为正则表达式提供了一种扩展语法,称为heregex。使用这种语法,我们可以使用空格来打破正常的正则表达式,我们还可以在这些扩展的正则表达式中使用注释,从而使它们更加用户友好。
例子
以下示例演示了 CoffeeScript hereregex中高级正则表达式的用法。在这里,我们使用高级正则表达式重写上面的示例。将此代码保存在名为heregex_example.coffee的文件中
input_data ="hello how are you welcome to Tutorials Point." heregex = /// <b> #bold opening tag (.*) #the tag value </b> #bold closing tag /// result = heregex.exec(input_data) console.log result
打开命令提示符并编译 .coffee 文件,如下所示。
c:\> coffee -c heregex_example.coffee
编译时,它会给出以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var heregex, input_data, result; input_data = "hello how are you welcome to <b> Tutorials Point.</b>"; heregex = /<b>(.*) <\/b>/; result = heregex.exec(input_data); console.log(result); }).call(this);
现在,再次打开命令提示符并运行 CoffeeScript 文件,如下所示。
c:\> coffee heregex_example.coffee
执行时,CoffeeScript 文件会产生以下输出。
[ '<b>Tutorials Point.</b>', 'Tutorials Point.', index: 29, input: 'hello how are you welcome to <b>Tutorials Point.</b>' ]