I need to get all characters between ‘(‘ and ‘)’ chars.
var str = "dfgdgdfg (aaa.bbb) sfd (c) fdsdfg ( ,ddd (eee) )";
In this example, I need to get 3 strings:
(aaa.bbb)
(c)
( ,ddd (eee) )
What pattern I have to write? Please, help.
Try something like this:
Edit: Actually this does quite work for the last bit – this expression doesn’t capture the last substring properly. I have CW’d this answer so that someone with more time can flesh it out to make it work properly.