Rules
|
|
any()
|
Match any of these characters exactly once (alias of any_of()). |
|
any_of()
|
Match any of these characters exactly once. |
|
anything()
|
Match any character(s) any (including zero) number of times. |
|
anything_but()
|
Match any character(s) except these any (including zero) number of times. |
|
end_of_line()
|
Match the expression only if it appears till the end of the line. |
|
find()
|
Match an expression (alias for then()). |
|
maybe()
|
Optionally match an expression. |
|
range()
|
Match any character within the range defined by the parameters. |
|
something()
|
Match any character(s) at least once. |
|
something_but()
|
Match any character(s) except these at least once. |
|
start_of_line()
|
Match the expression only if it appears from beginning of line. |
|
then()
|
Match an expression |