gpt4 book ai didi

javascript - 使用反向引用的最佳方式是什么?

转载 作者:行者123 更新时间:2023-11-29 19:35:34 27 4
gpt4 key购买 nike

在一些 \1 中可以工作,在一些 $1 中在线正则表达式构建器中。

这两种方式都适用于每个 javascript 引擎吗?

最佳答案

只有一种方法在 JavaScript 中有效,如果反向引用是在正则表达式 (\n) 或替换值 ($n) 中,则不同。

参见 MDN Regular Expressions :

[In a regular expression] where n is a positive integer, [\n refers to] a back reference to the last substring matching the n parenthetical in the regular expression (counting left parentheses).

For example, /apple(,)\sorange\1/ matches 'apple, orange,' in "apple, orange, cherry, peach."

..

The \1 and \2 in the pattern match the string's last two words. Note that \1, \2, \n are used in the matching part of the regex. In the replacement part of a regex the syntax $1, $2, $n must be used, e.g.: 'bar foo'.replace( /(...) (...)/, '$2 $1').

这种方式 JavaScript 中的正确方式;不同的正则表达式可能有不同的工作方式,但这与如上所述工作的 JavaScript 代码无关。

关于javascript - 使用反向引用的最佳方式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25281517/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com