Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Created January 20, 2021 19:25
Show Gist options
  • Save bobdobbalina/ae929f565179ff150b6f5e20673d4f7e to your computer and use it in GitHub Desktop.
Save bobdobbalina/ae929f565179ff150b6f5e20673d4f7e to your computer and use it in GitHub Desktop.
Javascript: Remove non ASCII characters from strings
const removeNonASCII = str => str.replace(/[^\x20-\x7E]/g, '');
removeNonASCII('äÄçÇéÉêlorem-ipsumöÖÐþúÚ'); // lorem-ipsum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment