Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Switch services using the Version drop-down list. Learn more about navigation.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Converts the input string to lower case.
Syntax
tolower(value)
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| value | string |
✔️ | The value to convert to a lowercase string. |
Returns
If conversion is successful, result is a lowercase string.
If conversion isn't successful, result is null.
Example
The following example checks whether the tolower() function converted the capitalized input string to lowercase.
tolower("Hello") == "hello"