simple regex expressions code example
Example 1: regex examples
<.+?> matches any character one or more times included inside < and >, expanding as needed -> Try it!
Example 2: regex examples
a(bc) parentheses create a capturing group with value bc -> Try it!a(?:bc)* using ?: we disable the capturing group -> Try it!a(?<foo>bc) using ?<foo> we put a name to the group -> Try it!