Here's an example
I would like to regex match any text between quotes ''
I want this match:
foo('text1', 'text2', 'text3' ....)
I don't want to match:
bar('text1', 'text2', 'text3' ....)
I don't want to match
'text1'
So i wanted the match the text1 text2 text3 ..etc.. only when between foo(). Matching only the text between the quotes"" and ignore the rest.