Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper Tools . Books 1-3 - <b>charlist()</b> http://www.X-Hacker.org [<<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()

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