Text.Start
Text.Start(text as nullable text, count as number) as nullable text
Gibt die ersten count
Zeichen von text
als Textwert zurück.
Ruft die ersten fünf Zeichen von "Hello, World" ab.
Verwendung
Text.Start("Hello, World", 5)
Ausgabe
"Hello"
Verwenden Sie die ersten vier Zeichen des Vornamens und die ersten drei Zeichen des Nachnamens, um die E-Mail-Adresse einer Person zu erstellen.
Verwendung
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
Ausgabe
#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"}
})