Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Created January 30, 2014 08:41
Show Gist options
  • Save jgdoncel/dd72bd6de33d9c43612f to your computer and use it in GitHub Desktop.
Save jgdoncel/dd72bd6de33d9c43612f to your computer and use it in GitHub Desktop.
Expresiones regulares
// Eliminar caracterse no alfanuméricos de una cadena
preg_replace("/[^A-Za-z0-9]/", '', $string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment