I have a string that contains text similar to this:
Code:
hello "test" "another test\"" "ok"
I want it to split in an output like this:
Code:
test
another test\"
ok
In this thread http://www.vbforums.com/showthread.php?t=576158 (?<=[^\\]|^)"" was used to remove quotes that don't have a \ before them. Maybe it can be adapted to be used as a split? But I am unsure on how to do so.

Thanks in advance.