Skip to content

Instantly share code, notes, and snippets.

@JosiasSena
Created July 15, 2016 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosiasSena/b3909f70584fcfd39dcff3012bf21074 to your computer and use it in GitHub Desktop.
Save JosiasSena/b3909f70584fcfd39dcff3012bf21074 to your computer and use it in GitHub Desktop.
Removes all white spaces from string
/**
* Removes all white spaces from string
*
* @param text - text to remove white spaces from
* @return - text without any whitespaces
*/
public static String removeWhiteSpaces(String text) {
return text.replaceAll("\\s+", "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment