zheng 1 day ago
parent
commit
7355694c7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      正则/5.元字符-字符类.html

+ 1 - 1
正则/5.元字符-字符类.html

@@ -26,7 +26,7 @@
         const reg5 = /[^0-9]/
         console.log(reg5.test(4))
 
-        // 4. . 除空格外的任意字符
+        // 4. . 除换行空格外的任意字符
         const reg6 = /./;
         console.log(reg6.test("aaa"));
         console.log(reg6.test("1234567890"));