I want to split a string by comma, space and quetes. for example:
Input:
"Super Bus" dri"ver bus1, driver1
output:
"Super Bus"
dri"ver
bus1
driver1
This is my regex(it splits by space and comme):
Text.RegularExpressions.Regex("[ ,]+")
Any help appreciated!