Here you can find the source of substituteTabsAndNewLinesWithSpaces(String str)
public static String substituteTabsAndNewLinesWithSpaces(String str)
//package com.java2s; public class Main { public static String substituteTabsAndNewLinesWithSpaces(String str) { return str.replaceAll("\\t", " ").replaceAll("\\n", " "); }/*from w w w . j a va 2 s. c o m*/ }