Help me with pattern please. I have string with commas like:
12v some, Item, which contains comma, Another item
I need to split it by commas and get:
0 => '12v some'
1 => 'Item, which contains comma'
2 => 'Another item'
how to use rule if there are letter in lowercase after comma dont split str?
I'm using [\s,][ ][A-Z0-9]+, but it trim some text