Operator | Description | Example |
* |
The preceding item will be matched zero or more times. | a*b |
? |
The preceding item is optional and will be matched, at most, once. | a?b |
+ |
The preceding item will be matched one or more times. | a+b |
| |
Either of the preceding or succeeding item will be matched. | a|b |
Example:
((a?b)|c*)+d
How to run: Just open
index.html
on your web browser or visit either of the following:
(This project was created in year 2016)