Jump to content

Removing square shaped hidden characters


zuzacat

Recommended Posts

Hi all,

 

In my string I have hidden characters that has a shape of square. When I print the string, it shows questions mark. When I opened it with notepad, it show a square shaped character. I want to remove this character in my strings. I have searched the web. Somebody says its carriage return but i think it is not. Could you please help me with this issue. Thanks alot.

Link to comment
Share on other sites

Thank you litebearer,

 

This function is ok but as our string contains turkish characters, with this function it removes them too.

 

Repeating the problem,

When I look at database, I see nothing in string but when I copy it to a text editor, I see the hidden char there. Below is the picture that the square hidden character seen.

I am outputting the result with XML, becouse of that hidden character it puts "?" (question mark) for that hidden square like character.

 

 

 

 

 

 

 

[attachment deleted by admin]

Link to comment
Share on other sites

Ok I found a way I strip all nonalphanumeric characters and allow some of them.

 

preg_replace('/[^a-zA-Z0-9\s\'\"\şıüğçöİŞÜĞÇÖ\.\<>_-]/', '', $string);

 

But I allow <br><p> tags in my string so I add "<" and ">" but could not add "/" character. May somebody help me to add this slash "/"  character in my regular expression to allow it.

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.