Decode HTML entities in android
- by johboh
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