Update README-zh-simple.md

'+' should match one or more character
This commit is contained in:
张中南 2017-08-11 21:41:52 +08:00 committed by GitHub
parent f8fdcdc03a
commit 5ea84ce58c

View File

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