I have a string something like this
\"quick\" \"brown\" fox jumps \"over\" \"the\" lazy dog
I need a regex to detect words not enclosed in doubl
use this regex:
\s+(?([^\"\s]+)*)\s+
this should be work; and get group named myword. else you need to trim your result string.