Skip to content

Instantly share code, notes, and snippets.

@EmmanuelGuther
Created April 20, 2021 09:29
Show Gist options
  • Save EmmanuelGuther/9f424072c39ccd604d8261d47a84423f to your computer and use it in GitHub Desktop.
Save EmmanuelGuther/9f424072c39ccd604d8261d47a84423f to your computer and use it in GitHub Desktop.
How to delete whitespace (newlines, spaces, tabs, etc) without regex?
fun String.removeWhitespace(): String = filterNot { it.isWhitespace() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment