regex code examples
Example 1: regex examples
\$\d matches a string that has a $ before one digit -> Try it!
Example 2: regex examples
a(b|c) matches a string that has a followed by b or c (and captures b or c) -> Try it!a[bc] same as previous, but without capturing b or c