zheng hace 1 día
padre
commit
7355694c7a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"));