Files
30-seconds-of-code/snippets/js/s/remove-non-ascii.md
2023-05-07 16:07:29 +03:00

461 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Remove non ASCII characters snippet javascript
string
regexp
tram-car 2020-10-22T20:24:30+03:00

Removes non-printable ASCII characters.

  • Use String.prototype.replace() with a regular expression to remove non-printable ASCII characters.
const removeNonASCII = str => str.replace(/[^\x20-\x7E]/g, '');
removeNonASCII('äÄçÇéÉêlorem-ipsumöÖÐþúÚ'); // 'lorem-ipsum'