forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdateFormat.xml
More file actions
53 lines (53 loc) · 3.24 KB
/
Copy pathdateFormat.xml
File metadata and controls
53 lines (53 loc) · 3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<doc>
<legacy_id>1500</legacy_id>
<name>dateFormat</name>
<type>function</type>
<syntax>
<example>the [ long | abbr[rev[iated]] | short ] [ english | system ] dateFormat</example>
</syntax>
<library></library>
<objects>
</objects>
<synonyms>
</synonyms>
<classification>
<category>Math, Logic, & Dates</category>
</classification>
<references>
<keyword tag="abbreviated">abbreviated Keyword</keyword>
<command tag="convert">convert Command</command>
<function tag="date">date Function</function>
<keyword tag="english">english Keyword</keyword>
<keyword tag="long">long Keyword</keyword>
<function tag="monthNames">monthNames Function</function>
<keyword tag="short">short Keyword</keyword>
<keyword tag="system">system Keyword</keyword>
<property tag="useSystemDate">useSystemDate Property</property>
<function tag="weekdayNames">weekdayNames Function</function>
</references>
<history>
<introduced version="1.1">Added.</introduced>
</history>
<platforms>
<mac/>
<windows/>
<linux/>
<ios/>
<android/>
</platforms>
<classes>
<desktop/>
<server/>
<web/>
<mobile/>
</classes>
<security>
</security>
<summary><glossary tag="return">Returns</glossary> a <keyword tag="string">string</keyword> describing a given date format using the syntax described below.</summary>
<examples>
<example>put the long dateFormat into stringToParse</example>
</examples>
<description>
<p>Use the <b>dateFormat</b> <control_st tag="function">function</control_st> to obtain the general format of the date for further processing.</p><p/><p><b>Value:</b></p><p>The <b>dateFormat</b> <control_st tag="function">function</control_st> <glossary tag="return">returns</glossary> a string.</p><p/><p><b>Comments:</b></p><p>The <b>dateFormat</b> <control_st tag="function">function</control_st> returns a <keyword tag="string">string</keyword> containing one or more formatting incantations, each of which describes a part of the requested date <function tag="format">format</function>. The possible incantations are as follows:</p><p/><p>%a</p><p><b>Abbreviated weekday name:</b> the abbreviated day of the week, as reported by the <function tag="weekdayNames">weekdayNames</function> function</p><p/><p>%A</p><p><b>Full weekday name:</b> the full day of the week, as reported by the weekdayNames function</p><p/><p>%b</p><p><b>Abbreviated month name:</b> the abbreviated month name, as reported by the monthNames function</p><p/><p>%B</p><p><b>Full month name:</b> the full month name, as reported by the monthNames function</p><p/><p>%d</p><p><b>Day of the month:</b> the day of the month as a number</p><p/><p>%m</p><p><b>Month number:</b> the number of the month</p><p/><p>%y</p><p><b>Two-digit year:</b> the year as a two-digit number</p><p/><p>%Y</p><p><b>Four-digit year:</b> This incantation indicates the year as a four-digit number (including the century)</p><p/><p>%w</p><p><b>Day of the week: </b> A number between 1 and 7</p><p/><p><b>Note:</b> The <b>dateFormat</b> differs from other date/time functionality in that the default is to return information relative to the system locale. i.e. the dateFormat is equivalent to the system dateFormat</p>
</description>
</doc>