Here you can find the source of cleanStringFromWhitespaces(String text)
Parameter | Description |
---|---|
text | a parameter |
public static String cleanStringFromWhitespaces(String text)
//package com.java2s; //License from project: Open Source License public class Main { /**// w w w .java 2 s .c o m * * @param text * @return */ public static String cleanStringFromWhitespaces(String text) { return text.replaceAll(" ", " ").trim(); } }