Skip to content

Commit

Permalink
docs(stdlib/regex): fixed #263
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanyf committed Dec 30, 2023
1 parent f05cc4a commit 4f58c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/stdlib/regexp.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ r2.exec(s) // null

上面代码中,正则对象`r1`匹配成功,返回一个数组,成员是匹配结果;正则对象`r2`匹配失败,返回`null`

如果正则表示式包含圆括号(即含有“组匹配”),则返回的数组会包括多个成员。第一个成员是整个匹配成功的结果,后面的成员就是圆括号对应的匹配成功的组。也就是说,第二个成员对应第一个括号,第三个成员对应第二个括号,以此类推。整个数组的`length`属性等于组匹配的数量再加1。
如果正则表达式包含圆括号(即含有“组匹配”),则返回的数组会包括多个成员。第一个成员是整个匹配成功的结果,后面的成员就是圆括号对应的匹配成功的组。也就是说,第二个成员对应第一个括号,第三个成员对应第二个括号,以此类推。整个数组的`length`属性等于组匹配的数量再加1。

```javascript
var s = '_x_x';
Expand Down

0 comments on commit 4f58c96

Please sign in to comment.