I\'m working on a gettext javascript parser and I\'m stuck on the parsing regex.
I need to catch every argument passed to a specific method call _n( and
_n(
Try this:
(?<=\().*?(?=\s*\)[^)]*$)
See live demo