학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Date.ToText(date as nullable date, optional options as any, optional culture as nullable text) as nullable text
의 텍스트 표현을 반환합니다 date
. 추가 속성을 지정하기 위해 선택적 record
매개 변수 options
를 제공할 수 있습니다.
culture
는 레거시 워크플로에만 사용됩니다.
record
는 다음 필드를 포함할 수 있습니다.
Format
: 사용할 형식을 나타내는 text
값입니다. 자세한 내용은 표준 날짜 및 시간 서식 문자열 및, 사용자 지정 날짜 및 시간 서식 문자열 및를 참조하십시오. 이 필드를 생략하거나 null
을 제공하면 Culture
에 의해 정의된 기본값을 사용하여 날짜 서식이 지정됩니다.
Culture
: Format
이 null이 아닌 경우 Culture
는 일부 형식 지정자를 제어합니다. 예를 들어 in은 is "en-US"
이고, in은 ."MMM"
"Jan", "Feb", "Mar", ...
입니다"ru-RU"
."MMM"
"янв", "фев", "мар", ...
Format
이 null
인 경우 Culture
는 사용할 기본 형식을 제어합니다.
Culture
가 null
이거나 생략되면 Culture.Current가 사용됩니다.
레거시 워크플로를 지원하기 위해 options
및 culture
가 텍스트 값일 수도 있습니다.
options = [Format = options, Culture = culture]
와 동작이 같습니다.
값으로 변환 #date(2010, 12, 31)
합니다 text
.
결과 출력은 현재 문화권에 따라 달라질 수 있습니다.
사용법
Date.ToText(#date(2010, 12, 31))
출력
"12/31/2010"
사용자 지정 형식 및 독일어 문화권을 사용하여 변환합니다.
사용법
Date.ToText(#date(2010, 12, 31), [Format="dd MMM yyyy", Culture="de-DE"])
출력
"31 Dez 2010"
양력에서 2000년 1월 1일에 해당하는 회교실 달력의 연도를 찾습니다.
사용법
Date.ToText(#date(2000, 1, 1), [Format="yyyy", Culture="ar-SA"])
출력
"1420"
학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
설명서
자세한 정보: Date.FromText
자세한 정보: Date.Year
자세한 정보: Date.From