From e671353fc364cef89441d031e0e8b9300b67951b Mon Sep 17 00:00:00 2001 From: Dai Chen <48859961+LittleDC@users.noreply.github.com> Date: Thu, 3 Mar 2022 18:17:42 +0800 Subject: Page not found of '\n' in Regular_Expressions page the original link of '\n'(https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions$edit#special-backreference) points to Page not found --- files/zh-cn/web/javascript/guide/regular_expressions/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn/web') diff --git a/files/zh-cn/web/javascript/guide/regular_expressions/index.html b/files/zh-cn/web/javascript/guide/regular_expressions/index.html index b8f02f1a9b..2b1c6b0eb9 100644 --- a/files/zh-cn/web/javascript/guide/regular_expressions/index.html +++ b/files/zh-cn/web/javascript/guide/regular_expressions/index.html @@ -142,7 +142,7 @@ translation_of: Web/JavaScript/Guide/Regular_Expressions
像下面的例子展示的那样,它会匹配 'x' 并且记住匹配项。其中括号被称为捕获括号。
-模式 /(foo) (bar) \1 \2/
中的 '(foo)
' 和 '(bar)
' 匹配并记住字符串 "foo bar foo bar" 中前两个单词。模式中的 \1
和 \2
表示第一个和第二个被捕获括号匹配的子字符串,即 foo
和 bar
,匹配了原字符串中的后两个单词。注意 \1
、\2
、...、\n
是用在正则表达式的匹配环节,详情可以参阅后文的 \n 条目。而在正则表达式的替换环节,则要使用像 $1
、$2
、...、$n
这样的语法,例如,'bar foo'.replace(/(...) (...)/, '$2 $1')
。$&
表示整个用于匹配的原字符串。
模式 /(foo) (bar) \1 \2/
中的 '(foo)
' 和 '(bar)
' 匹配并记住字符串 "foo bar foo bar" 中前两个单词。模式中的 \1
和 \2
表示第一个和第二个被捕获括号匹配的子字符串,即 foo
和 bar
,匹配了原字符串中的后两个单词。注意 \1
、\2
、...、\n
是用在正则表达式的匹配环节,详情可以参阅后文的 \n 条目。而在正则表达式的替换环节,则要使用像 $1
、$2
、...、$n
这样的语法,例如,'bar foo'.replace(/(...) (...)/, '$2 $1')
。$&
表示整个用于匹配的原字符串。