Formazione
Modulo
Manipolazione del testo in Power Automate per desktop - Training
Informazioni su come manipolare il testo e i valori datetime in Power Automate per desktop.
Questo browser non è più supportato.
Esegui l'aggiornamento a Microsoft Edge per sfruttare i vantaggi di funzionalità più recenti, aggiornamenti della sicurezza e supporto tecnico.
Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text
Restituisce testo formattato che viene creato applicando arguments
da un elenco o record a una stringa di formato formatString
. Facoltativamente è possibile specificare anche un elemento culture
, ad esempio, "en-US".
Formattare un elenco di numeri.
Utilizzo
Text.Format("#{0}, #{1}, and #{2}.", {17, 7, 22})
Output
"17, 7, and 22."
Formattare tipi di dati diversi di un record in base alle impostazioni cultura Italiano (Italia).
Utilizzo
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"
)
Output
"The time for the 10 km run held in Seattle on 3/10/2015 was 00:54:40."
Formazione
Modulo
Manipolazione del testo in Power Automate per desktop - Training
Informazioni su come manipolare il testo e i valori datetime in Power Automate per desktop.