Číst v angličtině

Sdílet prostřednictvím


Text.Format

Syntaxe

Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text

O uživateli

Vrátí formátovaný text, který je vytvořen použitím arguments ze seznamu nebo záznamu na formátovací řetězec formatString. Může být také k dispozici volitelná ( culture například "en-US").

Příklad 1

Naformátuje seznam čísel.

Využití

Text.Format("#{0}, #{1}, and #{2}.", {17, 7, 22})

Výstup

"17, 7, and 22."

Příklad 2

Formátovat různé datové typy ze záznamu podle USA anglické jazykové verze.

Využití

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ýstup

"The time for the 10 km run held in Seattle on 3/10/2015 was 00:54:40."