Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Excerpt
hiddentrue

changeCharset(value, charset) Converts a binary string into one with the appropriate charset


Function: changeCharset()

Converts a binary string into one with the appropriate charset.

Supports auto detection if Interprets the incoming binary string using the specified character set. Auto-detection of the charset is supported by providing a value of "auto" or "null" is providedin the charset parameter.

Syntax

changeCharset(value, charset)

ArgumentTypeDescription
valueStringInput value treated as a binary string.
charsetStrnigString

Target charset to convert charset the value is converted to. The following options are available:

  • "auto"
: automatically
  • , automatically detects
  • "default"
: use
  • , uses the platform default
  • "binary"
: treat
  • , treats the input as a binary string
  • "UTF-8"
:
  • , utf-8
  • "UTF-16"
:
  • , utf-16
  • "US-ASCII"
:
  • , ascii

Examples

changeCharset(in.body, "auto")

Where in.body has been read from another source. Returns a string automatically detecting the best charset.

...