Školenie
Modul
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Tento prehliadač už nie je podporovaný.
Inovujte na Microsoft Edge a využívajte najnovšie funkcie, aktualizácie zabezpečenia a technickú podporu.
Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text
Vráti formátovaný text, ktorý je vytvorený použitím arguments
zo zoznamu alebo záznamu na reťazec formátu formatString
. Možno uviesť aj voliteľný culture
(napríklad "en-US").
Formátovanie zoznamu čísel.
používania
Text.Format("#{0}, #{1}, and #{2}.", {17, 7, 22})
výstupu
"17, 7, and 22."
Formátujte rôzne typy údajov zo záznamu v súlade s anglickou jazykovou verziou (USA).
používania
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"
)
výstupu
"The time for the 10 km run held in Seattle on 3/10/2015 was 00:54:40."
Školenie
Modul
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.