I hope this helps people to be able to udnerstand my problem more clearly.
Lets say I have the String " I am in the room and the light is on "
When this is run through the program, it is essential that i have the String " I am in the room" and have the String " the light is on ".
Likewise with "or" and many other delimiters i will be implementing in the future.
So, if i had " I was in the Room and the Light is on or I go play outside"
Should break up into
String 1 : " I was in the Room"
String 2 : " the Light is on "
String 3 : " I go play outside "
I still have not found a solution to this, thanks for anyone that can help.
Avisesh Jain, you have helped me clear a lot of my logic erros, thank you for that.
However, in the previous code you put up above, the code on the left side of the String does get slotted into the array, since there is only one "and"
only the right side gets inside the array.
-Sean Magee
[ March 22, 2005: Message edited by: Sean Magee ]