mirror of
https://github.com/cesanta/slre.git
synced 2024-11-24 11:25:30 +00:00
Updated README
This commit is contained in:
parent
901b739932
commit
41ee4715eb
@ -26,6 +26,12 @@ most.
|
|||||||
\s Match whitespace
|
\s Match whitespace
|
||||||
\S Match non-whitespace
|
\S Match non-whitespace
|
||||||
\d Match decimal digit
|
\d Match decimal digit
|
||||||
|
\n Match new line character
|
||||||
|
\r Match line feed character
|
||||||
|
\f Match form feed character
|
||||||
|
\v Match vertical tab character
|
||||||
|
\t Match horizontal tab character
|
||||||
|
\b Match backspace character
|
||||||
+ Match one or more times (greedy)
|
+ Match one or more times (greedy)
|
||||||
+? Match one or more times (non-greedy)
|
+? Match one or more times (non-greedy)
|
||||||
* Match zero or more times (greedy)
|
* Match zero or more times (greedy)
|
||||||
|
Loading…
Reference in New Issue
Block a user