GetDateTimePart: Difference between revisions
From Catglobe Wiki
More actions
jrfconvert import  |
No edit summary  |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
{{HelpFiles}} | |||
 | |||
====getDateTimePart==== | ==== getDateTimePart ==== | ||
Returns a part of a specific date | Returns a part of a specific date  | ||
'''Syntax''' | '''Syntax''' Â | ||
getDateTimePart(''date'', ''part'') | getDateTimePart(''date'', ''part'') Â | ||
'''Arguments''' | '''Arguments''' Â | ||
''date'': Is a date with the type of array | ''date'': Is a date with the type of array  | ||
''part'': is an expression with the type of number. It must be one of the built-in constants: | ''part'': is an expression with the type of number. It must be one of the built-in constants: Â | ||
DateTime_Year | DateTime_Year  | ||
DateTime_Month | DateTime_Month  | ||
DateTime_Day | DateTime_Day  | ||
DateTime_Hour | DateTime_Hour  | ||
DateTime_Minute | DateTime_Minute  | ||
DateTime_Second | DateTime_Second  | ||
DateTime_Millisecond | DateTime_Millisecond  | ||
DateTime_Week | DateTime_Week  | ||
DateTime_TimeZone (only 5.6++) | DateTime_TimeZone (only 5.6++) Â | ||
'''Return type''' | '''Return type''' Â | ||
number | number  | ||
'''Examples''' | '''Examples''' Â | ||
number year = getDateTimePart(getDateTime(), DateTime_Year); | ''number year = getDateTimePart(getDateTime(), DateTime_Year); '' | ||
print("The current year is " + year); | ''print("The current year is " + year); '' | ||
'' | ''//Result: The current year is 2011 '' | ||
Version 4.8 | '''Availability''' | ||
__NOTOC__ | Â | ||
<!-- imported from file: 397.htm--> | Version 4.8 __NOTOC__ <!-- imported from file: 397.htm--> Â | ||
 | |||
[[Category:General_Functions]] | |||
Latest revision as of 10:25, 21 December 2011

getDateTimePart
Returns a part of a specific date
Syntax
getDateTimePart(date, part)
Arguments
date: Is a date with the type of array
part: is an expression with the type of number. It must be one of the built-in constants:
DateTime_Year
DateTime_Month
DateTime_Day
DateTime_Hour
DateTime_Minute
DateTime_Second
DateTime_Millisecond
DateTime_Week
DateTime_TimeZone (only 5.6++)
Return type
number
Examples
number year = getDateTimePart(getDateTime(), DateTime_Year);
print("The current year is " + year);
//Result: The current year is 2011
Availability
Version 4.8