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

Some special characters inside a XML stream may break it. I need to sanitize the data i want to insert in such a stream so that 1) it doesn't corrupt 2) printable UTF-8 characters in it keeps working.

I also need to flush the output out as soon as i generate it, else i would have to keep a lot of stuff in ram.

As of now, i do something like

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

It removes most of not printable characters, but not all of them. I'm having my hard times trying to figure out what characters are causing this problem, however the terminal returns "1;2c " when i encounter one of them.

Do you have any better way to strip out all of these ugly characters?

share|improve this question

1 Answer

up vote 2 down vote accepted

Not sure that you're on the right path ...

1.) Why do you want to transport non-printable (binary?) data in a text-based format?

2.) Check if CDATA helps

<node><![CDATA[ugly characters]]></node>

3.) convert binary data into printable characters using base64

<node><?php echo base64_encode($uglyCharacters); ?></node>
share|improve this answer
Hi, CDATA was already there. I have to output "raw" data, not base64 encoded. However, i should have fixed. I was truncating the characters on each word individually, to than have all of them together. Greping with the code i posted the single word + the final output works. I don't know how, but it works... ;) – cedivad May 6 '12 at 14:51

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.