Returns the text with removed character types as specified.
SppRemoveCharacterTypes([Text],[RemoveLowercase],[RemoveUppercase],[RemoveNumbers],[RemoveNonAlphaNumeric])
Where:
Text is the text to evaluate.
RemoveLowercase is TRUE to remove Lowercase characters from the text.
RemoveUppercase is TRUE to remove Uppercase characters from the text.
RemoveNumbers (optional) is TRUE to remove Numbers from the text.
RemoveNonAlphaNumeric (optional) is TRUE to remove Non Alphanumeric characters from the text.
Rule | Result | Meaning |
---|---|---|
SppRemoveCharacterTypes("DriveWorks 16""!£$%^&*()",TRUE,FALSE,TRUE,TRUE) | DW | Will return the text string removing Lowercase characters, Numbers and Non Alphanumeric characters. |