Skip to content

Instantly share code, notes, and snippets.

@sriniind19
Created November 14, 2017 09:39
Show Gist options
  • Save sriniind19/e710e731cf782de446e84d1d09f04f70 to your computer and use it in GitHub Desktop.
Save sriniind19/e710e731cf782de446e84d1d09f04f70 to your computer and use it in GitHub Desktop.
To remove the white spaces from a string
public class RemoveWhiteSpace {
public String remvoeWhiteSpaceFromString(String strVal) {
return strVal.deleteWhitespace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment