Rules
|
rx_any_of()
|
Match any of these characters exactly once. |
rx_anything()
|
Match any character(s) any (including zero) number of times. |
rx_anything_but()
|
Match any character(s) except these any (including zero) number of times. |
rx_either_of()
|
Alternatively, match either expression. |
rx_end_of_line()
|
Match the expression only if it appears till the end of the line. |
rx_find()
|
Match an expression. |
rx_maybe()
|
Optionally match an expression. |
rx_not()
|
Ensure that the parameter does not follow. |
rx_range()
|
Match any character within the range defined by the parameters. |
rx_something()
|
Match any character(s) at least once. |
rx_something_but()
|
Match any character(s) except these at least once. |
rx_start_of_line()
|
Match the expression only if it appears from beginning of line. |
rx_word_edge()
|
Find beginning or end of a word. |