Skip to content

Instantly share code, notes, and snippets.

@hasankucuk
Created April 13, 2018 07:31
Show Gist options
  • Save hasankucuk/7caddd6c9dfd0eaffe4935b574c35b08 to your computer and use it in GitHub Desktop.
Save hasankucuk/7caddd6c9dfd0eaffe4935b574c35b08 to your computer and use it in GitHub Desktop.
Replace all space
String old="123 549 4aa aa"
String new = old.replaceAll("\\s", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment