Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I imagine I need to remove chars 0-31 and 127,

Is there a function or piece of code to do this efficiently.

share|improve this question

7 Answers

up vote 36 down vote accepted

Something like this should do it

$string = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string);

It matches anything in range 0-31, 128-255 and removes it.

share|improve this answer
This is perfect for my problem! – Stewart Robinson Jul 24 '09 at 11:03
1  
If you need to consider a newline safe, change the expression to this (inversely search for printables): preg_replace(/[^\x0A\x20-\x7E]/,'',$string); – Nick Sep 16 '10 at 19:56
6  
This does not work with UTF8 characters. – Dalin Dec 17 '11 at 19:26
this seems to remove german characters too like öäüß – Stevanicus Sep 9 '12 at 16:13
@Dalin There is no such thing as an “UTF-8 character”. There are Unicode symbols/characters, and UTF-8 is an encoding that can represent all of them. You meant to say this doesn’t work for characters outside of the ASCII character set. – Mathias Bynens Dec 31 '12 at 13:25

Many of the other answers here do not take into account unicode characters (ex. йȝîûηыეமிᚉ⠛ ). In this case you can use the following:

$string = preg_replace('/[\x00-\x08\x0B\x0C\x0E-\x1F\x80-\x9F]/u', '', $string);

If you wish to also strip line feeds, carriage returns, and tabs you can use:

$string = preg_replace('/[\x00-\x1F\x80-\x9F]/u', '', $string);

If you wish to strip everything except basic printable ASCII characters (all the example characters above will be stripped) you can use:

$string = preg_replace( '/[^[:print:]]/', '',$string);

For reference see http://www.utf8-chartable.de/

share|improve this answer
Many thanks for this little UTF-8 tip. Really really useful. – cedivad May 6 '12 at 12:43
Your regexp handles UTF8 characters fine; but it strips non-UTF8 "special" characters; like ç, ü and ö. '/[\x00-\x1F\x80-\xC0]/u'leaves them intact; but also division (F7) and multiplication (D7) sign. – Hazar May 9 '12 at 11:11
@Hazar yes you are correct \x80-\xFF stripped out too much, but \x80-\xC0 is still too restrictive. This would miss other printable characters like ©£±. For reference see utf8-chartable.de – Dalin Feb 7 at 19:46

this is simpler:

$string = preg_replace( '/[^[:print:]]/', '',$string);

share|improve this answer
2  
This also strips line feeds, carriage returns, and UTF8 characters. – Dalin Dec 17 '11 at 19:26
@Dalin There is no such thing as an “UTF-8 character”. There are Unicode symbols/characters, and UTF-8 is an encoding that can represent all of them. You meant to say this strips characters outside of the ASCII range as well. – Mathias Bynens Dec 31 '12 at 13:36

you can use character classes

/[[:cntrl:]]+/
share|improve this answer
doesn't this require me to use ereg though? – Stewart Robinson Jul 24 '09 at 11:05
preg_replace can be used. – ghostdog74 Jul 24 '09 at 11:15

My UTF-8 compliant version:

preg_replace('/[^\p{L}\s]/u','',$value);

share|improve this answer

You could use a regular express to remove everything apart from those characters you wish to keep:

$string=preg_replace('/[^A-Za-z0-9 _\-\+\&]/','',$string);

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).

share|improve this answer
preg_replace('/(?!\n)[\p{Cc}]/', '', $response);

This will remove all the control characters (http://uk.php.net/manual/en/regexp.reference.unicode.php) leaving the \n newline characters. From my experience, the control characters are the ones that most often cause the printing issues.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.