Update README-cn.md (#43)

This commit is contained in:
tldzyx 2017-08-12 15:04:46 +08:00 committed by Zeeshan Ahmed
parent e8532bf629
commit 250d538b3c

View File

@ -93,7 +93,7 @@
|[ ]|字符种类. 匹配方括号内的任意字符.|
|[^ ]|否定的字符种类. 匹配除了方括号里的任意字符|
|*|匹配>=0个重复的在*号之前的字符.|
|+|匹配>1个重复的+号前的字符.
|+|匹配>=1个重复的+号前的字符.
|?|标记?之前的字符为可选.|
|{n,m}|匹配num个中括号之前的字符 (n <= num <= m).|
|(xyz)|字符集, 匹配与 xyz 完全相等的字符串.|