訓練
模組
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Number.ToText(number as nullable number, optional format as nullable text, optional culture as nullable text) as nullable text
根據 number
指定的格式,將數值 format
轉換為文字值。
格式是文字值,指出應該如何轉換數字。 如需所支援格式值的詳細資訊,請移至 標準數值格式字串 和 自定義數值格式字串。
您也可以提供選用 culture
(例如,"en-US"),以控制 format
的文化特性相依行為。
在不指定格式的情況下,將數字轉換成文字。
使用方式
Number.ToText(4)
輸出
"4"
將數字轉換為指數格式。
使用方式
Number.ToText(4, "e")
輸出
"4.000000e+000"
將數字轉換為只有一個小數位數的百分比格式。
使用方式
Number.ToText(-0.1234, "P1")
輸出
"-12.3 %"
訓練
模組
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.