Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosajhpled/07118d85adfba0236a0c11e56742c1df to your computer and use it in GitHub Desktop.
Save nosajhpled/07118d85adfba0236a0c11e56742c1df to your computer and use it in GitHub Desktop.
PHP - Remove All Characters except Letters, Numbers and Spaces
I do this way to often:
preg_replace('/[^a-zA-Z0-9 ]/','',$string)
#PHP#REGEX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment