你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
tobool()
适用于:✅Microsoft Fabric✅Azure 数据资源管理器Azure Monitor✅Microsoft✅ Sentinel
将输入值转换为布尔值(带符号的 8 位)表示形式。
tobool()
和toboolean()
函数是等效的
注意
如果可能,请改用布尔文本。
语法
tobool(
value)
详细了解语法约定。
参数
客户 | 类型 | 必需 | Description |
---|---|---|---|
value | string |
✔️ | 要转换为布尔值的值。 |
返回
如果转换成功,则结果将为布尔值。
如果转换不成功,结果将为 null
。
示例
tobool("true") == true
tobool("false") == false
tobool(1) == true
tobool(123) == true