학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Text.Start(text as nullable text, count as number) as nullable text
텍스트 값으로 첫 text
번째 count
문자를 반환합니다.
"Hello, World"의 처음 5자를 가져옵니다.
사용법
Text.Start("Hello, World", 5)
출력
"Hello"
이름의 처음 네 문자와 성의 처음 세 문자를 사용하여 개인의 전자 메일 주소를 만듭니다.
사용법
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"}
})
학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.