DeleteAllCharactersPunctuation
Removes all characters with ASCII values 33-47,58-64,91-96, and 123-191 from the current Field object's recognized value or from a DCO variable.
Syntax
bool DeleteAllCharactersPunctuation (string Target)Parameters
Target: A smart parameter that resolves to a target DCO field or DCO variable to be updated.Returns
Always True.Level
Any level.Details
Removes all characters with ASCII values 33-47,58-64,91-96, and 123-191 from the current Field object's recognized value or from a DCO variable. Other characters will remain. If the target is a field's recognized text, the confidence of the remaining characters will not be changed by this operation.
Example 1
DeleteAllPunctuationCharacters("@F")
Assuming this action is called on a field level object, the recognized text value "JAN2003" becomes "JAN".
Example 2
DeleteAllPunctuationCharacters("@X.MyVariable")This action will delete all punctuation characters from the variable "MyVariable" on the current DCO object.