トレーニング
モジュール
デスクトップ用 Power Automate でのテキスト操作 - Training
デスクトップ用 Power Automate でのテキストと datetime 値の操作方法について説明します。
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text
一覧またはレコードから arguments
を書式文字列 formatString
に適用することによって作成された書式付きテキストを返します。 オプションの culture
を指定することもできます (例: "en-US")。
数値のリストを書式設定します。
使用方法
Text.Format("#{0}, #{1}, and #{2}.", {17, 7, 22})
出力
"17, 7, and 22."
米国 (英語) のカルチャに基づいて、レコードをさまざまなデータ型に書式設定します。
使用方法
Text.Format(
"The time for the #[distance] km run held in #[city] on #[date] was #[duration].",
[
city = "Seattle",
date = #date(2015, 3, 10),
duration = #duration(0, 0, 54, 40),
distance = 10
],
"en-US"
)
出力
"The time for the 10 km run held in Seattle on 3/10/2015 was 00:54:40."
トレーニング
モジュール
デスクトップ用 Power Automate でのテキスト操作 - Training
デスクトップ用 Power Automate でのテキストと datetime 値の操作方法について説明します。