AutoHotKey(오토핫키) 설명서 FormatTime
FormatTime
YYYYMMDDHH24MISS형식의 타임 스탬프를 지정의 서식의 일자 시각 문자열로 변환한다
FormatTime, OutputVar [, TimeStamp, Format]
Parameters
OutputVar | 출력 결과를 격납하는 변수명. |
TimeStamp |
YYYYMMDDHH24MISS형식의 타임 스탬프 문자열. 생략시는 현재 시각. 일자 부분/시각 부분 가운데,25시간등 잘못된 부분을 포함한 부분은 출력되지 않는다. 또,1601해부터9999해의 범위외의 일자의 경우도, 일자 부분은 출력되지 않는다. 뒤로, 반각 스페이스에서 단락지어 이하의 옵션을 열거할 수 있다.
|
Format |
출력되는 서식을 지정.
이하의 어떤 것인지를 지정.
|
Format의 서식 문자열
대문자 소문자는 구별된다
서식 문자열 | 출력 결과 |
---|---|
d | 일자(1...31) |
dd | 일자(01...31) |
ddd | 짧은 요일 문자열(일...토) |
dddd | 긴 요일 문자열(일요일...토요일) |
M | 월(1...12) |
MM | 월(01...12) |
MMM | 짧은 월명(일본어에서는1-12.영어의 경우,Jan등.) |
MMMM | 긴 월명(일본어에서는1월-12월.영어의 경우,January등.) |
y | 서기년의10의 정도 이하(0-99) |
yy | 서기년아래2형(00-99) |
yyyy | 4자리수의 서기년(2005등) |
gg | 연호 등.없는 경우는 하늘.(일본어의 경우,TimeStamp의 옵션에 「D4」(을)를 붙이면 「헤세이」 등에 된다) |
서식 문자열 | 출력 결과 |
---|---|
h | 시(1...12) |
hh | 시(01...12) |
H | 시(0...23) |
HH | 시(00...23) |
m | 분(0...59) |
mm | 분(00...59) |
s | 초(0...59) |
ss | 초(00...59) |
t | 오전/오후를 나타낸다1문자(일본어의 경우, 어느쪽이나 「오」가 되어 버려 의미가 없다.영어의 경우, 「A」 「P」. |
tt | 오전이나 오후(영어의 경우AM/PM) |
Related
SetFormat, Transform, built-in date and time variables, FileGetTime
Example(s)
FormatTime, TimeString MsgBox The current time and date (time first) is %TimeString%. FormatTime, TimeString, R MsgBox The current time and date (date first) is %TimeString%. FormatTime, TimeString,, Time MsgBox The current time is %TimeString%. FormatTime, TimeString, T12, Time MsgBox The current 24-hour time is %TimeString%. FormatTime, TimeString,, LongDate MsgBox The current date (long format) is %TimeString%. FormatTime, TimeString, 20050423220133, dddd MMMM d, yyyy hh:mm:ss tt MsgBox The specified date and time, when formatted, is %TimeString%. FormatTime, TimeString, 200504, 'Month Name': MMMM`n'Day Name': dddd MsgBox %TimeString% FormatTime, YearWeek, 20050101, YWeek MsgBox January 1st of 2005 is in the following ISO year and week number: %YearWeek% FileSelectFile, FileName, 3,, Pick a file if FileName = ; The user didn't pick a file. return FileGetTime, FileTime, %FileName% FormatTime, FileTime, %FileTime% ; Since the last parameter is omitted, the long date and time are retrieved. MsgBox The selected file was last modified at %FileTime%.
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 GetKeyState() (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 GetKeyState (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 Floor() (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileSetTime (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileSetAttrib (0) | 2014.08.14 |