regex by example
Example 1: regex examples
\D matches a single non-digit character -> 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!