Convert string to UTF8 format http

nico78

Active Member
Licensed User
Longtime User
Hello,

Hox convert string to UTF8 format http as :

B4X:
Sub hc_ResponseSuccess (Response As HttpResponse, TaskId As Int)
'   Select TaskId
'      Case Send
      result = Response.GetString("UTF8")

but from a string

For example, i want:
string="%C3%A9" convert to "é"
 

desof

Well-Known Member
Licensed User
Longtime User
Tengo Este Mismo Problema Y No Puedo Solucionar Alguna Ayuda Por Favor......
 
Upvote 0

desof

Well-Known Member
Licensed User
Longtime User
Hola teniendo en cuenta que soy nuevo no te puedes esforzar un poco mas en la respuesta por que no entiendo como hacerlo !!!

Gracias
 
Upvote 0

walterf25

Expert
Licensed User
Longtime User
Decodificar string

Necesitas usar la libreria que se llama
StringUtils
se usa de la misma manera que cualquier otra libreria, defines una variable
por ejemplo

B4X:
Dim decodificar as StringUtils
dim result as string 
result = decodificar.DecodeUrl("%C3%A9", "UTF8")
Log(result)

Lo acabo de correr y si me da el resultado que tu quieres

** Activity (main) Create, isFirst = true **
é
** Activity (main) Resume **
** Activity (main) Pause, UserClosed = false **

Espero lo entiendas
 
Last edited:
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…