How do I remove strange and unwanted Unicode characters (such as a black diamond with question mark) from a String?
Updated:
Please tell me the Unicode character string or regex that correspond to "a black diamond with question mark in it".
|
|
A black diamond with a question mark is not a unicode character -- it's a placeholder for a character that your font cannot display. If there is a glyph that exists in the string that is not in the font you're using to display that string, you will see the placeholder. This is defined as U+FFFD: �. Its appearance varies depending on the font you're using. You can use |
|||||||||||
|
|
You can use a There is no If you want to remove control characters you can do
prints EDIT If you want to know the unicode of any 16-bit character you can do
|
|||||||||||||||
|
|
Use String.replaceAll( ):
|
||||
|
|
|
You can't because strings are immutable. It is possible, though, to make a new string that has the unwanted characters removed. Look up String#replaceAll(). |
|||
|
|
That will do it for any non word character. |
||||
|
|
|
Put the characters that you want to get rid of in an array list, then iterate through the array with a replaceAll method:
you will end up with a cleaned string "resultStr" haven't tested this but along the lines. |
|||||||||
|
|
Justin Thomas's was close, but this is probably closer to what you're looking for:
The selector \p{Cntrl} selects "A control character: [\x00-\x1F\x7F]." |
|||
|
|