Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- dBsee 4.6 - The Library - <b>dfdecode()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
dfDecode()
DECODEs/ENCODEs a string
------------------------------------------------------------------------------
Syntax:

     dfDecode( <cString>, [<cDecode>] ) --> cDedecoded

Parameters:

     <cString>  String to decode
     <cDecode>  String to use for decodification. An internal string will
     be used by default

Returns:

     <cDedecoded> decodified string

Description:

     Allows to encode and decode a string

Example:

     LOCAL cString := "dBsee 4, "+;
                      "the standard CASE for CA-CLIPPER"
     LOCAL cDecoded
     
     ? cString +"<- Old string"
     cDecoded := dfDecode( cString, "Test" )
     ? cDecoded +"<- New string"
     cDecoded := dfDecode( cDecoded, "Test" )
     ? cDecoded +"<- Old string"

See also:

     dfXor()

See Also: dfXor()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson