Another typical error that most of us make while splitting a string with "." as a delimiter, is not escaping it.
String unsplitString = "abc.def.xyz";
String[] splitStrings = unsplitString.split ("\\.");
Subscribe to:
Posts (Atom)
a note of some of the stuff i learnt,followed, my experiences and everything else.