Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
String foo = "bar 1 2 3";
System.out.println(foo.replaceAll("\\t{2}"," ").replaceAll("\\t{2}"," "));
System.out.println(foo.replaceAll("\\s+"," "));
output_row.line=input_row.line.replaceAll("\\s+"," ");