pls help me.
how can I split this String value?
my code below wont work:
String[] tempStr;
toSplit = "This is the just a sample <FONT COLOR=BLACK>1)[option1/option2]</FONT> sentence. This is another sample <FONT COLOR=BLUE>1)[othertext1/othertext2]</FONT> sentence."
tempStr = toSplit.split("<FONT COLOR = [A-Z]*>([.])*</FONT>");
what i want guys is to split the paragraph with the delimiter .... thanks for any help.