Format
This Flow Script tutorial explains how to use the Format function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the Format function with syntax and examples.
Last updated
Was this helpful?
The Format function formats x as a string, using the given pattern.
The syntax for the Format function is:
Format(x, pattern)
Format(x, pattern, locale) // Flow version 6.14.3 and up
x - the value to format.
pattern - the format, see .
locale (optional) - a language tag in the format "en-US".
The Format function returns a date, numeric, or string depending on the formatting pattern.
Let's look at some Format function examples and explore how to use the Format function.