Regex
3.4: Repetition Operators
Repetition operators repeat the preceding regular expression a specified number of times.
Match-zero-or-more Operator
*
Match-one-or-more Operator
+
Match-zero-or-one Operator
?
Interval Operators
{}