Merge pull request #203 from cuiyaocool/master

modify the desc of {n,m} in README-cn.md
This commit is contained in:
Zeeshan Ahmad 2020-04-01 11:34:37 +04:00 committed by GitHub
commit c9c8ef7d84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@
|*|匹配>=0个重复的在*号之前的字符。| |*|匹配>=0个重复的在*号之前的字符。|
|+|匹配>=1个重复的+号前的字符。 |+|匹配>=1个重复的+号前的字符。
|?|标记?之前的字符为可选.| |?|标记?之前的字符为可选.|
|{n,m}|匹配num个大括号之间的字符 (n <= num <= m).| |{n,m}|匹配num个大括号之前的字符或字符集 (n <= num <= m).|
|(xyz)|字符集,匹配与 xyz 完全相等的字符串.| |(xyz)|字符集,匹配与 xyz 完全相等的字符串.|
|&#124;|或运算符,匹配符号前或后的字符.| |&#124;|或运算符,匹配符号前或后的字符.|
|&#92;|转义字符,用于匹配一些保留的字符 <code>[ ] ( ) { } . * + ? ^ $ \ &#124;</code>| |&#92;|转义字符,用于匹配一些保留的字符 <code>[ ] ( ) { } . * + ? ^ $ \ &#124;</code>|