Help for this page
\$ # Our '$' prefix (?: # Optionally *don't* find the opening paren. ... ) (\w+) # The middle part is captured in $2 (?(1)\)) # Require a closing paren only if $1 matched.
\$ # Our '$' prefix ( # Capture into $1 (?: ... \( \w+ \) # A word with parentheses around it. ) )