auto commit

This commit is contained in:
CyC2018
2018-05-30 18:41:35 +08:00
parent 0a47291191
commit b04f8e35a4
10 changed files with 230 additions and 198 deletions

View File

@ -47,7 +47,7 @@ My **name** is Zheng.
**-** 元字符只有在 [ ] 之间才是元字符,在 [ ] 之外就是一个普通字符;
**^** 是取非操作,必须在 [ ] 字符集合中使用;
**^** 在 [ ] 字符集合中是取非操作。
**应用**
@ -131,7 +131,7 @@ abc[^0-9]
```
[\w.]+@\w+\.\w+
[\w.]+@[\w]+\.[\w]+
[\w.]+@[\w]+[\.][\w]+
```
**{n}** 匹配 n 个字符,**{m, n}** 匹配 m\~n 个字符,**{m,}** 至少匹配 m 个字符;