Western time format strings
- Sub-String Name
- Sub-String Value
- Western Time
- Hours + MinutesSet(1) + Meridian(1) + Zone(1)
- Hours
- HH24
H24
HH12
H12
- MinutesSet
- Separator(1) + "MM" + SecondSet(1)
"[" + Separator(1) + "MM" + SecondSet(1) + "]"
Separator(1) + "M" + SecondSet(1)
"[" + Separator(1) + "M" + SecondSet(1) + "]"
- SecondSet
- Separator(1) + "SS" + FractionSet(1)
"[" + Separator(1) + "SS" + FractionSet(1) + "]"
Separator(1) + "S" + FractionSet(1)
"[" + Separator(1) + "S" + FractionSet(1) + "]"
- FractionSet
- Separator(1) + MinPlaces + "-" + MaxPlaces
"[" + Separator(1) + MinPlaces + "-" + MaxPlaces + "]"
- MinPlaces
- An integer from 0 to 9
- MaxPlaces
- An integer from 0 to 9 (must be less than MinPlaces)
- Meridian
- "AM/PM"
"[AM/PM]"
- Zone
- "+/-ZZZZ"
"ZZZ"
"+/-ZZ:ZZ"
"+/-ZZ[:ZZ]"
"+/-ZZ[ZZ]"
"TZD"
"[+/-ZZZZ]"
"[ZZZ]"
"[+/-ZZ:ZZ]"
"[+/-ZZ[:ZZ]]"
"[+/-ZZ[ZZ]]"
"[TZD]"
- Separator
- Separator is optional. If specified, it can be
up to 120 bytes, composed of non-alphabetic characters. Symbol table
values, such as <CR>, can be used to indicate non-printable
characters.
MinuteSet Separator required if Hours is H24 or H12
SecondSet Separator required if MinuteSet is M
FractionSet Separator required if SecondSet is S