isascii()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns true
if the argument is a valid ASCII string.
isascii(
value)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
value | string |
✔️ | The value to check if a valid ASCII string. |
A boolean value indicating whether value is a valid ASCII string.
print result=isascii("some string")
Output
result |
---|
true |