auto commit

This commit is contained in:
CyC2018
2018-03-26 09:39:11 +08:00
parent 945624ec4a
commit e1f157d4d2
2 changed files with 11 additions and 11 deletions

View File

@ -69,7 +69,7 @@ abc[^0-9]
## 匹配空白字符
| 元字符 | 说明 |
| ------------ | ------------ |
| :---: | :---: |
| [\b] | 回退(删除)一个字符 |
| \f | 换页符 |
| \n | 换行符 |
@ -86,21 +86,21 @@ abc[^0-9]
### 1. 数字元字符
| 元字符 | 说明 |
| ------------ | ------------ |
| :---: | :---: |
| \d | 数字字符,等价于 [0-9] |
| \D | 非数字字符,等价于 [^0-9] |
### 2. 字母数字元字符
| 元字符 | 说明 |
| ------------ | ------------ |
| :---: | :---: |
| \w | 大小写字母,下划线和数字,等价于 [a-zA-Z0-9\_] |
| \W | 对 \w 取非 |
### 3. 空白字符元字符
| 元字符 | 说明 |
| ------------ | ------------ |
| :---: | :---: |
| \s | 任何一个空白字符,等价于 [\f\n\r\t\v] |
| \S | 对 \s 取非 |
@ -290,7 +290,7 @@ a.+c
## 大小写转换
| 元字符 | 说明 |
| ---| ---|
| :---: | :---: |
| \l | 把下个字符转换为小写 |
| \u| 把下个字符转换为大写 |
| \L | 把\L 和\E 之间的字符全部转换为小写 |