[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
 CHARLIST()
 Lists each character in a string
------------------------------------------------------------------------------
 Syntax
     CHARLIST(<cString>) --> cString
 Argument
     <cString>  Designates the string that is processed.
 Returns
     CHARLIST() returns a list in which each character in <cString> appears
     only once.
 Description
     CHARLIST() determines the list of characters that appear in the
     <cString>.  Each character only appears in the list once.
 Notes
     .  The CHARLIST() function's return value is never longer than
        256 characters.
     .  If you sort this result with CHARSORT(), you have an ascending
        list of characters.
 Examples
     .  What letters are contained in the text?
        ? CHARLIST("Hello goodbye")                // "Helo gdby"
     .  Show a sorted list of all letters in a text:
        ? CHARSORT(CHARLIST("Hello goodbye"))      // "Hbdegloy"
See Also:
CHARONE()
CHARSORT()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson