From 9e2e045e85f1d505fab7b1ef33e32f1c272231b3 Mon Sep 17 00:00:00 2001 From: Drtxdt Date: Wed, 18 Mar 2026 10:38:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E9=83=A8=E5=88=86=E5=8F=8D?= =?UTF-8?q?=E6=96=9C=E6=9D=A0=E5=9B=A0=E4=B8=BAmd=E6=B8=B2=E6=9F=93?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E6=97=A0=E6=B3=95=E6=98=BE=E7=A4=BA=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 9-regular-expressions/07-regexp-escaping/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/07-regexp-escaping/article.md b/9-regular-expressions/07-regexp-escaping/article.md index a920c222e..6c5fc640a 100644 --- a/9-regular-expressions/07-regexp-escaping/article.md +++ b/9-regular-expressions/07-regexp-escaping/article.md @@ -65,7 +65,7 @@ alert( "Chapter 5.1".match(reg) ); // null 因为反斜杠被字符串“消耗”了。我们可能还记得,常规字符串有自己的特殊字符,例如 `\n`,反斜杠用于转义。 -下面是 "\d\.\d" 的感知形式: +下面是 "\d\\.\d" 的感知形式: ```js run alert("\d\.\d"); // d.d