Here you can find the source of rmvEnter(String input)
public static String rmvEnter(String input)
//package com.java2s; public class Main { public static String rmvEnter(String input) { return input.replaceAll("\n", ""); }// w w w .j a va 2s . c om }