auto commit

This commit is contained in:
CyC2018 2019-10-17 02:33:13 +08:00
parent 85013cc7af
commit 96a272c6bb
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ abc[^0-9]
**abc.def<span>@</span>qq.com**
- **{n}** 匹配 n 个字符
- **{m, n}** 匹配 m\~n 个字符
- **{m,n}** 匹配 m\~n 个字符
- **{m,}** 至少匹配 m 个字符
\* + 都是贪婪型元字符会匹配尽可能多的内容在后面加 ? 可以转换为懒惰型元字符例如 \*?+? {m, n}?

View File

@ -130,7 +130,7 @@ abc[^0-9]
**abc.def<span>@</span>qq.com**
- **{n}** 匹配 n 个字符
- **{m, n}** 匹配 m\~n 个字符
- **{m,n}** 匹配 m\~n 个字符
- **{m,}** 至少匹配 m 个字符
\* + 都是贪婪型元字符会匹配尽可能多的内容在后面加 ? 可以转换为懒惰型元字符例如 \*?+? {m, n}?