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