I have little problem in regular expressin creation. Expected input:
blahblahblah, blahblahblah, 'blahblahblah', "blahblahblah, asdfd"
I need to get words separated with comma to array. But, I cannot use split function, 'cause comma can occure in strings too. So, Expected output is:
arr[0] = blahblahblah
arr[1] = blahblahblah
arr[2] = 'blahblahblah'
arr[3] = "blahblahblah, asdfd"
Does anybody know some regular expression or some another solution that can help me and give me similair output? Please help.