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