I am working with regular expression in python, need an expression which will check for bracket “()” and after the characters.That means it will catch only “test()abc” not “test()”.
Thanks
I am working with regular expression in python, need an expression which will check
Share
Very simple:
\w+\(\)\w+