I'm currently trying to find a regex pattern that allows me to match dot separated words past config., but not match any words that have open parenthesis. Example:
config.hello.worldshould matchhello.worldconfig.helloshould matchhelloconfig.hello.world(should matchhelloconfig.hello.world*10should matchhello.world
I've been unable to figure out the parenthesis part. The first, second, and fourth example above I've gotten to work via
\bconfig\.([\w\.]+)
Any help would be appreciated, thank you.