Hi
I need help with String parsing.
I want to do string tokenizing with string enclosed in double quotes as 1 token.
String is entered in a text box.
If user enters
-->abc bcd def
Curently,I have white space as my delimiter giving me abc ,bcd,def tokens.
But i want to add -double quotes to override WS.
If user enters --> "abc bcd" def -> I shoud have 2 string tokens-
abc bcd
and def
how should i do that .
Thanks