Tool to identify patterns that match the regular expression
This tool takes simple regular expression patterns
The recognised special characters and patterns are:
- [chars]: one or more characters
- (expr1|expr2|...): one of more expressions
- ?: zero or one occurrence of an expression
- +: one or more occurrences of an expression
- *: zero of more occurrences of an expression
? and * are restricted to one or two expressions
|
Search for regular expression matches in text
|