mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-10-03 09:12:37 -04:00
Update README-zh-simple.md
'+' should match one or more character
This commit is contained in:
parent
f8fdcdc03a
commit
5ea84ce58c
@ -88,7 +88,7 @@
|
||||
|[ ]|字符种类. 匹配方括号内的任意字符.|
|
||||
|[^ ]|否定的字符种类. 匹配除了方括号里的任意字符|
|
||||
|*|匹配>=0个重复的在*号之前的字符.|
|
||||
|+|匹配>1个重复的+号前的字符.
|
||||
|+|匹配>=1个重复的+号前的字符.
|
||||
|?|标记?之前的字符为可选.|
|
||||
|{n,m}|匹配num个中括号之前的字符 (n <= num <= m).|
|
||||
|(xyz)|字符集, 匹配与 xyz 完全相等的字符串.|
|
||||
|
Loading…
x
Reference in New Issue
Block a user