Skip to content

Instantly share code, notes, and snippets.

@akshaykalola28
Last active April 5, 2023 09:02
Show Gist options
  • Save akshaykalola28/1b162d7de989339e778268f65075eb9d to your computer and use it in GitHub Desktop.
Save akshaykalola28/1b162d7de989339e778268f65075eb9d to your computer and use it in GitHub Desktop.
Extension remove whitespace for kotlin developer
fun String.removeAllWhitespaces(): String {
return this.replace("\\s+".toRegex(), "")
}
fun String.removeDuplicateWhitespaces(): String {
return this.replace("\\s+".toRegex(), " ")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment