Jump to content

Deleting hidden control chars (\n, \r \t, etc.) from a RTF stream [FIXED]


tox_yray

Recommended Posts

Hi,

See, I have this massive chunk of code to convert RTF into HTML and I get problems with special characters when their is "something" (other than a space) between the special character and the rest of the word. For example, the flow "\'c9cole Polytechnique de Montr\'e9 al \par." seems to have only a space between the last "é" and "al" and between "al" and "\par" too. However, when I mark, nl2br() and explode the string, here is what is returned on screen:

[code]
2078: $$!!CONTROL++--++SPACECHARc9
2079: cole
2080: Polytechnique
2081: de
2082: Montr
2083: $$!!CONTROL++--++CHARe9
2084:
al.

2085: $$!!CONTROL++--par
[/code]
As you can see, <br>s were introduced before and after "al", which means there is a \n and/or \r char there, that I an't see when I print the stream with echo.

My goal now is to detect those characters to delete them from the RTF stream I have to interpret. How to do it is where I hit a wall.

Any ideas how to do this?
Thanks a lot for any input,
Bruno M-A.
Link to comment
Share on other sites

Thanks a lot, it works like a charm. However, for future reference, you have to make sure you write your search array like this:

[code]$search = array("\r", "\n");[/code]
Escaping the slash (\\) will cause the script to search for the actual string "\r" instead of the char '\r'.
Single quotes will auto-escape the slash, so double quotes are required here.

Hoping this will help more people around here sometime,
Bruno M-A.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.