Java Regex String Replace Whitespace replaceBlank(String str)

Here you can find the source of replaceBlank(String str)

Description

replace Blank

License

Open Source License

Declaration

public static String replaceBlank(String str) 

Method Source Code


//package com.java2s;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {

    public static String replaceBlank(String str) {
        String dest = "";
        if (null == str) {
            return "esolving error!";
        }/*from  www. j  a v a 2  s . c o  m*/
        if (str != null) {
            Pattern p = Pattern.compile("\\s*|\t|\r|\n");
            Matcher m = p.matcher(str);
            dest = m.replaceAll("");
        }
        return dest;
    }
}

Related

  1. replaceBlank(String str)
  2. replaceBlank(String str)
  3. replaceBlank(String str)
  4. replaceWhitespace(final String value, final boolean stripExtras)
  5. replaceWhitespace(final String value, final boolean stripExtras)
  6. replaceWhitespace(String searchTerm)
  7. replaceWhiteSpaces(final String value, final String replaceBy)