Text.Format
Text.Format(formatString as text, arguments as any, optional culture as nullable text) as text
목록 또는 레코드에서 서식 문자열formatString
에 적용하여 arguments
만든 서식 있는 텍스트를 반환합니다. 선택적 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."