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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -