Hi All, I have the following program, The string "x" is a tab separated 12s34; public class Testoken { public static void main(String[] args) { String x = "1 2 s 3 4 "; StringTokenizer st = new StringTokenizer(x,"\t"); int i = 0; while(st.hasMoreTokens()){ System.out.println("token-->"+st.nextToken()); i++; } System.out.println("i-->"+i);//elements from tokenizer String [] a = x.split("\t"); System.out.println("length--->"+a.length); for(int y = 0;y"+a[y]);//elements ...