I have this pcre regex script (?<=group\()(.*)(?=\)) ,how I covert it into javascript regex.
if i have a string group(sum("abc")) then regex should give everything between closing braces of group. like group(sum("abc")) should give me sum("abc")
Don't use lookbehind:
group\((.*)(?=\))