I want to write a regex that matches the "()" one time in:
hello()
hello(asd, 2)
hello(asd,sad))
That is, the 1st and the 2nd one should match but not the 3rd one.
Also the () has to be at the end so:
hello(asd)q
hello(asd)-
wont match.
In other words I want the regex to help me know if the string is a valid function call so i can use eval() on it. Could someone help me out. Thanks.
eval? You could avoid using it entirely and it's especially easy if the functions you're calling and arguments you're passing are in the global scope or just primitives. – Andy E Apr 20 '11 at 9:37evalis the only way, but I won't press the argument since it's not really a big deal. – Andy E Apr 20 '11 at 16:21