Decode HTML entities in android
Posted
by johboh
on Stack Overflow
See other posts from Stack Overflow
or by johboh
Published on 2010-05-27T06:21:31Z
Indexed on
2010/05/27
7:01 UTC
Read the original article
Hit count: 1264
Hi there.
I need to decode HTML entities, e.g. from ö to ö, and & to &.
URLEncoder.decode(str) does not do the job (convert from % notations). TextUtils has a HTMLencode, but not a HTMLdecode.
Are there any function for decoding HTML entities?
Regards, Johan
© Stack Overflow or respective owner