영어로 읽기

다음을 통해 공유


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

이름의 처음 네 문자와 성의 처음 세 문자를 사용하여 개인의 전자 메일 주소를 만듭니다.

사용법

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