ASCII Rule ¶
The rule verifies that a ticket property's value consists of ASCII characters. If the property value consists of any non-ASCII characters, the Rule will fail.
Syntax
1 2 | check <property String> consists of ASCII characters; check <property String> consists of ASCII characters if present; |
- property - The property being checked.
Example
1 2 | check "CALL_ID" consists of ASCII characters; check "CALL_ID" consists of ASCII characters if present; |
Additional Examples
| Property Value | Check Result |
|---|---|
| "VoiceFlat" | OK |
| "VoiceFlät" | FAIL |