$ regex examples
Example 1: 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
Example 2: regex examples
<.+?> matches any character one or more times included inside < and >, expanding as needed -> Try it!