อ่านในภาษาอังกฤษ

แชร์ผ่าน


Text.Format

วากยสัมพันธ์

Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text

ประมาณ

แสดงข้อความที่จัดรูปแบบที่สร้างขึ้นโดยนํา arguments จากรายการหรือเรกคอร์ดไปใช้กับสตริงรูปแบบ formatString นอกจากนี้ อาจมี culture ที่เลือกได้ (ตัวอย่างเช่น "en-US")

ตัวอย่างที่ 1

จัดรูปแบบรายการตัวเลข

การใช้งาน

Text.Format("#{0}, #{1}, and #{2}.", {17, 7, 22})

ผลลัพธ์ของ

"17, 7, and 22."

ตัวอย่างที่ 2

จัดรูปแบบชนิดข้อมูลที่แตกต่างกันจากบันทึกตามวัฒนธรรมภาษาอังกฤษแบบสหรัฐอเมริกา

การใช้งาน

Text.Format(
    "The time for the #[distance] km run held in #[city] on #[date] was #[duration].",
    [
        city = "Seattle",
        date = #date(2015, 3, 10),
        duration = #duration(0, 0, 54, 40),
        distance = 10
    ],
    "en-US"
)

ผลลัพธ์ของ

"The time for the 10 km run held in Seattle on 3/10/2015 was 00:54:40."