Text.From

構文

Text.From(value as any, optional culture as nullable text) as nullable text

バージョン情報

value のテキスト表現を返します。 value は、numberdatetimedatetimedatetimezonelogicalduration、または binary となります。 任意の値が null の場合、Text.From では null 値が返されます。 オプションの culture を指定することもできます (例: "en-US")。

例 1

数値 3 からテキスト値を作成します。

使用方法

Text.From(3)

出力

"3"