D
Director
I have a problem, can someone please tell me how to go about splitting
a query of the following type:
And(dog, Or(mouse,cat));
into:
dog
or(mouse,cat)
I can manage to split it to
dog, Or(mouse,cat)
but if i use string tokeniser with ',' as the delimiter it would split
it into:
dog
or(mouse
cat)
can someone tell me a way around the problem?
a query of the following type:
And(dog, Or(mouse,cat));
into:
dog
or(mouse,cat)
I can manage to split it to
dog, Or(mouse,cat)
but if i use string tokeniser with ',' as the delimiter it would split
it into:
dog
or(mouse
cat)
can someone tell me a way around the problem?