Text.Repeat
ไวยากรณ์
Text.Repeat(text as nullable text, count as number) as nullable text
เกี่ยวกับ
แสดงค่าข้อความที่ประกอบด้วยข้อความที่ text
ป้อนเข้า ทําซ้ํา count
ครั้ง
ตัวอย่างที่ 1
ทําซ้ําข้อความ "a" ห้าครั้ง
การใช้งาน
Text.Repeat("a", 5)
เอาท์พุท
"aaaaa"
ตัวอย่าง 2
ทําซ้ําข้อความ "helloworld" สามครั้ง
การใช้งาน
Text.Repeat("helloworld.", 3)
เอาท์พุท
"helloworld.helloworld.helloworld."