Text.Start

構文

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

バージョン情報

text の最初の count 文字をテキスト値として返します。

例 1

"Hello, World" の最初の 5 文字を取得します。

使用方法

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

出力

"Hello"

例 2

名の最初の 4 文字と姓の最初の 3 文字を使用して、個人のメール アドレスを作成します。

使用方法

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