This table printer will replace any tab, line-feeds, or carriage return control characters encountered in a cell with a single space.
928929930931932933934
* The output stream for the table. * @return Returns a script-friendly table printer. */ protected final TablePrinter createScriptFriendlyTablePrinter( PrintStream stream) { return new TabSeparatedTablePrinter(stream); }