Some of the data which I'm retrieving from a webpage contains URL-encoded constants (like &. It looks like a job for URLdecode (StringUtils method), but it doesn't work, not for me anyway:
code:
B4X:
dim su as StringUtils
label1.Text = su.DecodeUrl( sTitle, "UTF16") & " " & sdate
Those are HTML character entity references not URL encodings (percent-encodings). The crudest way is to transform them is by String.Replace but maybe someone more in tune with HTML/XML than I can think of a more elegant solution.