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

javascript - Complete OpenIDConnect auth when requesting via Ajax -

c# - Replace text in MailItem Body -

java - Get more than One value and display it -