Skip to content

Commit

Permalink
docs(string-methonds): fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanyf committed Dec 31, 2024
1 parent a100783 commit 4c80184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/string-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ String.prototype.replaceAll(searchValue, replacement)

上面例子中,`replaceAll()`的第二个参数是一个函数,该函数的返回值会替换掉所有`b`的匹配。

这个替换函数可以接受多个参数。第一个参数是捕捉到的匹配内容,第二个参数捕捉到是组匹配(有多少个组匹配,就有多少个对应的参数)。此外,最后还可以添加两个参数,倒数第二个参数是捕捉到的内容在整个字符串中的位置,最后一个参数是原字符串。
这个替换函数可以接受多个参数。第一个参数是捕捉到的匹配内容,第二个参数是捕捉到的组匹配(有多少个组匹配,就有多少个对应的参数)。此外,最后还可以添加两个参数,倒数第二个参数是捕捉到的内容在整个字符串中的位置,最后一个参数是原字符串。

```javascript
const str = '123abc456';
Expand Down

0 comments on commit 4c80184

Please sign in to comment.