Dela via


Text.Start

Syntax

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

Om

Returnerar de första count tecknen text i som ett textvärde.

Exempel 1

Få de första 5 tecknen i "Hello, World".

Användning

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

Output

"Hello"

Exempel 2

Använd de första fyra tecknen i förnamnet och de tre första tecknen i efternamnet för att skapa en enskild persons e-postadress.

Användning

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

Output

#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"}
})