To use an WEB API call I am required to encode a string with URLEncode
https://en.wikipedia.org/wiki/Percent-encoding
In Harbour this can be done using the tip_URLEncode function (HBTIP Library).
So I tried the simple line below:
Code: Select all
MsgDebug( tip_URLEncode("Microsoft Office") )Code: Select all
Microsoft%20OfficeCode: Select all
Microsoft+OfficeIn the link below the statement is "%20" is more modern:
https://stackoverflow.com/questions/163 ... cter-or-20
Is there a modified version or alternative function to do the URLEncoding ?
Best regards,
Theo