Skip to content

hatzisn/B4R-MyURLEncodeDecode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

B4R-MyURLEncodeDecode

This library allows you to UrlEncode and UrlDecode strings in order to use them in URLs. Here is how to use it:

B4R:

    Dim sToURLEncode As String = "Αυτή είναι μία πρόταση στα Ελληνικά. Για να δούμε πόσο καλά θα την κωδικοποιήσει"
    Dim bEnc(sToURLEncode.Length * 3) As Byte
    URL.Encode(sToURLEncode, bEnc)
    Log(bEnc)
    Dim bDec(sToURLEncode.Length * 3) As Byte
    URL.Decode(bEnc, bDec)
    Log(bDec)

About

URLEncode and URLDecode for B4R apps. Usage in URLs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published