todecimal()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
將輸入轉換成十進位數表示法。
注意
可能的話,請改用 十進位常值 。
語法
todecimal(
value)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | Description |
---|---|---|---|
value | 純量 | ✔️ | 要轉換成十進位的值。 |
傳回
如果轉換成功,結果會是十進位數。
如果轉換不成功,結果會是 null
。
範例
print todecimal("123.45678") == decimal(123.45678)
輸出
print_0 |
---|
true |