Im having a problem with removing non-utf8 characters from string, which are not displaying properly. Characters are like this 0x97 0x61 0x6C 0x6F (hex representation)
What is the best way to remove them? Regular expression or something else ?
|
feedback
|
|
Using a regex approach:
It searches for UTF-8 sequences, and captures those into group 1. It also matches single bytes that could not be identified as part of a UTF-8 sequence, but does not capture those. Replacement is whatever was captured into group 1. This effectively removes all invalid bytes. It is possible to repair the string, by encoding the invalid bytes as UTF-8 characters. But if the errors are random, this could leave some strange symbols.
| |||||
feedback
|
|
Below worked well.
| |||
|
feedback
|
|
If you apply utf8_encode() to an already UTF8 string it will return a garbled UTF8 output. I made a function that addresses all this issues. It´s called Encoding::toUTF8(). You dont need to know what the encoding of your strings is. It can be Latin1 (iso 8859-1), Windows-1252 or UTF8, or the string can have a mix of them. Encoding::toUTF8() will convert everything to UTF8. I did it because a service was giving me a feed of data all messed up, mixing those encodings in the same string. Usage:
I've included another function, Encoding::fixUTF8(), wich will fix every UTF8 string that looks garbled product of having been encoded into UTF8 multiple times. Usage:
Examples:
will output:
Download: | ||||
|
feedback
|
|
So the rules are that the first UTF-8 octlet has the high bit set as a marker, and then 1 to 4 bits to indicate how many additional octlets; then each of the additional octlets must have the high two bits set to 10. The pseudo-python would be:
This same logic should be translatable to php. However, its not clear what kind of stripping is to be done once you get a malformed character. | ||||
|
feedback
|
| |||
|
feedback
|
|
You can use mbstring:
...will remove invalid characters. See: Replacing invalid UTF-8 characters by question marks, mbstring.substitute_character seems ignored | |||
|
feedback
|
|
How about iconv: http://php.net/manual/en/function.iconv.php Haven't used it inside PHP itself but its always performed well for me on the command line. You can get it to substitute invalid characters. | |||
|
feedback
|
|
The solutions listed here didn't work for me so I found my answer here in the section "Character validation": | |||
|
feedback
|
This is what I am using. Seems to work pretty well. Taken from http://planetozh.com/blog/2005/01/remove-invalid-characters-in-utf-8/ | |||
|
feedback
|