REBOL Programming/dehex

      USAGE:

      DEHEX value 
      

      DESCRIPTION:

      Converts URL-style hex encoded (%xx) strings.

      DEHEX is a native value.

      ARGUMENTS

      • value -- The string to dehex (Type: any-string)

      SOURCE CODE

      dehex: native[
          "Converts URL-style hex encoded (%xx) strings." 
          value [any-string!] "The string to dehex"
      ]
      
      {{BookCat}}
      
      Last modified on 27 October 2012, at 22:14