Reputation: 61
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")
Upvotes: 0
Views: 236