แชร์ผ่าน


Text.Start

ไวยากรณ์

Text.Start(text as nullable text, count as number) as nullable text

เกี่ยวกับ

แสดงอักขระตัวtextแรกของ count เป็นค่าข้อความ

ตัวอย่าง 1

รับ 5 อักขระแรกของ "Hello, World"

การใช้งาน

Text.Start("Hello, World", 5)

เอาท์พุท

"Hello"

ตัวอย่าง 2

ใช้อักขระสี่ตัวแรกของชื่อและอักขระสามตัวแรกของนามสกุลเพื่อสร้างที่อยู่อีเมลของแต่ละบุคคล

การใช้งาน

let
    Source = #table(type table [First Name = text, Last Name = text],
    {
        {"Douglas", "Elis"},
        {"Ana", "Jorayew"},
        {"Rada", "Mihaylova"}
    }),
    EmailAddress = Table.AddColumn(
        Source,
        "Email Address", 
        each Text.Combine({
            Text.Start([First Name], 4),
            Text.Start([Last Name], 3),
            "@contoso.com"
        })
    )
in
    EmailAddress

เอาท์พุท

#table(type table [First Name = text, Last Name = text, Email Address = text],
{
    {"Douglas", "Elis", "DougEli@contoso.com"},
    {"Ana", "Jorayew", "AnaJor@contoso.com"},
    {"Rada", "Mihaylova", "RadaMih@contoso.com"}
})