Skip to content

Instantly share code, notes, and snippets.

@zourdyzou
Created December 2, 2022 04:32
Show Gist options
  • Select an option

  • Save zourdyzou/fd1d5413a882a57bef929e2d866b49d2 to your computer and use it in GitHub Desktop.

Select an option

Save zourdyzou/fd1d5413a882a57bef929e2d866b49d2 to your computer and use it in GitHub Desktop.
Sanitazion
function sanitizeString(str){
str = str.replace(/[^a-z0-9áéíóúñü \.,_-]/gim,"");
return str.trim();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment