CT_CHARREM

 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()

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.