java - Remove ASCII Question Mark -
i have following string passed application.
2�4�9�
(2�4�9�)
i remove question mark ascii characters above string.
how this?
according unicode code table, �
(or \ufffd
) is character �.
you can remove unicode character string :
str = str.replaceall("�", "");
but should try understand why there.
Comments
Post a Comment