학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Time.ToText(time as nullable time, optional options as any, optional culture as nullable text) as nullable text
의 텍스트 표현을 반환합니다 time
. 추가 속성을 지정하기 위해 선택적 record
매개 변수 options
를 제공할 수 있습니다. culture
는 레거시 워크플로에만 사용됩니다. record
는 다음 필드를 포함할 수 있습니다.
Format
: 사용할 형식을 나타내는 text
값입니다. 자세한 내용은https://go.microsoft.com/fwlink/?linkid=2180104 및 https://go.microsoft.com/fwlink/?linkid=2180105를 참조하세요. 이 필드를 생략하거나 null
을 제공하면 Culture
에 의해 정의된 기본값을 사용하여 날짜 서식이 지정됩니다.
Culture
: Format
이 null이 아닌 경우 Culture
는 일부 형식 지정자를 제어합니다. 예를 들어 in은 is "en-US"
이고, in은 ."ar-EG"
"tt"
입니다"ص" or "م"
."tt"
"AM" or "PM"
Format
이 null
인 경우 Culture
는 사용할 기본 형식을 제어합니다. Culture
가 null
이거나 생략된 경우 Culture.Current가 사용됩니다.
레거시 워크플로를 지원하기 위해 options
및 culture
가 텍스트 값일 수도 있습니다. options = [Format = options, Culture = culture]
와 동작이 같습니다.
값으로 변환 #time(01, 30, 25)
합니다 text
. 결과 출력은 현재 문화권에 따라 달라질 수 있습니다.
사용법
Time.ToText(#time(11, 56, 2))
출력
"11:56 AM"
사용자 지정 형식 및 독일어 문화권을 사용하여 변환합니다.
사용법
Time.ToText(#time(11, 56, 2), [Format="hh:mm", Culture="de-DE"])
출력
"11:56"
표준 시간 형식을 사용하여 변환합니다.
사용법
Time.ToText(#time(11, 56, 2), [Format="T", Culture="de-DE"])
출력
"11:56:02"
학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.