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
广告