Suppose I have a string such as the following:
\"func(arg1, arg2, arg3, arg4, ..., argn)\"
EDIT: This function is not in some particular la
Regular expressions cannot parse complex programming languages.
If you're just trying to parse Python, I suggest taking a look at the ast module, which will parse it for you.