Skip to content

Instantly share code, notes, and snippets.

@wood-push-melon
Last active December 11, 2019 14:45
Show Gist options
  • Save wood-push-melon/4b4777889d88f637e31ccd04c6bbe820 to your computer and use it in GitHub Desktop.
Save wood-push-melon/4b4777889d88f637e31ccd04c6bbe820 to your computer and use it in GitHub Desktop.
Sanitizing String Input
user_input = "This\nstring has\tsome whitespaces...\r\n"
character_map = {
ord('\n') : ' ',
ord('\t') : ' ',
ord('\r') : None
}
user_input.translate(character_map)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment