aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDai Chen <48859961+LittleDC@users.noreply.github.com>2022-03-03 18:17:42 +0800
committerIrvin <irvinfly@gmail.com>2022-03-04 01:00:01 +0800
commite671353fc364cef89441d031e0e8b9300b67951b (patch)
tree603785ea414b63d0457f7c36c0d47794d5399902
parentd56d4654fdfce067220aa4c505663ed3f84e792e (diff)
downloadtranslated-content-e671353fc364cef89441d031e0e8b9300b67951b.tar.gz
translated-content-e671353fc364cef89441d031e0e8b9300b67951b.tar.bz2
translated-content-e671353fc364cef89441d031e0e8b9300b67951b.zip
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
-rw-r--r--files/zh-cn/web/javascript/guide/regular_expressions/index.html2
1 files changed, 1 insertions, 1 deletions
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
<td>
<p>像下面的例子展示的那样,它会匹配 'x' 并且记住匹配项。其中括号被称为<em>捕获括号</em>。</p>
- <p>模式 <code>/(foo) (bar) \1 \2/</code> 中的 '<code>(foo)</code>' 和 '<code>(bar)</code>' 匹配并记住字符串 "foo bar foo bar" 中前两个单词。模式中的 <code>\1</code> 和 <code>\2</code> 表示第一个和第二个被捕获括号匹配的子字符串,即 <code>foo</code> 和 <code>bar</code>,匹配了原字符串中的后两个单词。注意 <code>\1</code>、<code>\2</code>、...、<code>\n</code> 是用在正则表达式的匹配环节,详情可以参阅后文的 <a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions$edit#special-backreference">\n</a> 条目。而在正则表达式的替换环节,则要使用像 <code>$1</code>、<code>$2</code>、...、<code>$n</code> 这样的语法,例如,<code>'bar foo'.replace(/(...) (...)/, '$2 $1')</code>。<code>$&amp;</code> 表示整个用于匹配的原字符串。</p>
+ <p>模式 <code>/(foo) (bar) \1 \2/</code> 中的 '<code>(foo)</code>' 和 '<code>(bar)</code>' 匹配并记住字符串 "foo bar foo bar" 中前两个单词。模式中的 <code>\1</code> 和 <code>\2</code> 表示第一个和第二个被捕获括号匹配的子字符串,即 <code>foo</code> 和 <code>bar</code>,匹配了原字符串中的后两个单词。注意 <code>\1</code>、<code>\2</code>、...、<code>\n</code> 是用在正则表达式的匹配环节,详情可以参阅后文的 <a href="https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions#special-backreference">\n</a> 条目。而在正则表达式的替换环节,则要使用像 <code>$1</code>、<code>$2</code>、...、<code>$n</code> 这样的语法,例如,<code>'bar foo'.replace(/(...) (...)/, '$2 $1')</code>。<code>$&amp;</code> 表示整个用于匹配的原字符串。</p>
</td>
</tr>
<tr>