I imagine I need to remove chars 0-31 and 127,
Is there a function or piece of code to do this efficiently.
|
|
|
Something like this should do it
It matches anything in range 0-31, 128-255 and removes it. |
|||||||||||||||
|
|
Many of the other answers here do not take into account unicode characters (ex. йȝîûηыეமிᚉ⠛ ). In this case you can use the following:
If you wish to also strip line feeds, carriage returns, and tabs you can use:
If you wish to strip everything except basic printable ASCII characters (all the example characters above will be stripped) you can use:
For reference see http://www.utf8-chartable.de/ |
|||||||
|
|
this is simpler:
|
|||||||
|
|
you can use character classes
|
|||||
|
|
|
You could use a regular express to remove everything apart from those characters you wish to keep:
Replaces everything that is not (^) the letters A-Z or a-z, the numbers 0-9, space, underscore, hypen, plus and ampersand - with nothing (i.e. remove it). |
|||
|
|
This will remove all the control characters (http://uk.php.net/manual/en/regexp.reference.unicode.php) leaving the |
|||
|
|