Skip to main content

Text.From

สร้างค่าข้อความจากค่าที่กำหนด

Syntax

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

Remarks

ส่งกลับข้อความสำหรับแสดงแทนของ value โดย value สามารถเป็นค่า number, date, time, datetime, datetimezone, logical, duration หรือ binary ได้ ถ้าค่าที่กำหนดให้เป็น null Text.From จะส่งกลับค่า null โดยอาจมีการระบุ culture เพิ่มเติม (ตัวอย่างเช่น "en-US")

Examples

Example #1

สร้างค่าข้อความจากตัวเลข 3

Text.From(3)

Result:

"3"

Category

Text.Conversions from and to text