トレーニング
モジュール
デスクトップ用 Power Automate でのテキスト操作 - Training
デスクトップ用 Power Automate でのテキストと datetime 値の操作方法について説明します。
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
Text.Start(text as nullable text, count as number) as nullable text
count
の最初の text
文字をテキスト値として返します。
"Hello, World" の最初の 5 文字を取得します。
使用方法
Text.Start("Hello, World", 5)
出力
"Hello"
名の最初の 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"}
})
トレーニング
モジュール
デスクトップ用 Power Automate でのテキスト操作 - Training
デスクトップ用 Power Automate でのテキストと datetime 値の操作方法について説明します。