Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created July 5, 2013 06:22
Show Gist options
  • Select an option

  • Save dodyw/5932354 to your computer and use it in GitHub Desktop.

Select an option

Save dodyw/5932354 to your computer and use it in GitHub Desktop.
public String cleanupNonAlphanumeric(String s) {
return s.replaceAll("[^A-Za-z0-9\\.\\s]", "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment