# String
'hello world' # hello world
# Lazy repetition
'hello'{1,5} # (?:hello){1,5}?
'hello'* # (?:hello)*?
'hello'+ # (?:hello)+?
# Greedy repetition
'hello'{1,5} greedy # (?:hello){1,5}
'hello'* greedy # (?:hello)*
'hello'+ greedy # (?:hello)+
# Alternation
'hello' | 'world' # hello|world
# Character classes
<p class="indent">['aeiou'] # [aeiou]
<p class="indent">['p'-'s'] # [p-s]
|