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>charrem()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 CHARREM()
 Removes particular characters from a string
------------------------------------------------------------------------------
 Syntax

     CHARREM(<cDelCharacterstring>,<cString>) --> cString

 Arguments

     <cDelCharacterstring>  Designates the characters that are removed
     from <cString>.

     <cString>  Designates the string that is processed.

 Returns

     The processed <cString> is returned.

 Description

     With this function you can remove particular characters from any
     position in <cString>.  It is possible to ensure that the character
     string does not contain these characters later.

 Note

     .  No changes occur if you pass invalid or incorrect parameters.

 Examples

     .  Remove the blanks from a string:

        ? CHARREM(" ", " 1  2   ")     // "12"

     .  Remove the number "3" and the letter "y":

        ? CHARREM("3y", "xyz123")      // "xz12"


See Also: CHARONLY() CHARONE()

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