Table of contents

CharSet

Parameter CharSet is an object that defines specific configurations for character recognition. It allows for the inclusion of special characters and the exclusion of certain characters, providing more control over which characters are recognized or ignored during processing.

Example

{
    "CharSet": {
        "AddSpecialChars": ["-", ":"],
        "ExcludeChars": ["O", "Q"]
    }
}

Parameter Summary

Arguments

Argument Name Argument Summary
AddSpecialChars
(Required)
Description
It is an array that specifies additional special characters to be recognized.
Type
string array
Range
hyphen (-)
underscore (_)
colon (:)
space ( )
period (.)
Default Value
null</b>: It means no extra special characters are recognized unless explicitly added.
ExcludeChars
(Optional)
Description
It is an array that specifies characters to be excluded from recognition.
Type
string array
Range
It is dependent on the CharRecognition model:
Number: [0-9]
Letter: [a-zA-Z]
UpperCase: [A-Z]
LowerCase: [a-z]
Default Value
null: It means no characters are excluded unless explicitly specified.

Is this page helpful?

YesYes NoNo

In this article: