Year: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "YEAR(''date'') '''Description''' YEAR returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents ...")
 
No edit summary
Line 1: Line 1:
YEAR(''date'')
Year(''date'')


'''Description'''
== Description ==


YEAR returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents a date.
Year returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents a date.


'''Example'''
== Example ==


<pre>
<pre>
REM YEAR Example
Rem Year Example
'YEAR returns year of a date as an integer
'Year returns year of a date as an integer
DIM IndepYear, Birthyear
Dim IndepYear, Birthyear
IndepYear = YEAR("July 4, 1776")
IndepYear = Year("July 4, 1776")
PRINT "YEAR of July 4, 1776:", IndepYear
Print "YEAR of July 4, 1776:", IndepYear
Birthyear = YEAR("12/27/70")
Birthyear = Year("12/27/70")
PRINT "YEAR of 12/27/70:", Birthyear
Print "YEAR of 12/27/70:", Birthyear
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
YEAR of July 4, 1776:      1776
Year of July 4, 1776:      1776
YEAR of 12/27/70:    1970
Year of 12/27/70:    1970
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[day|DAY]], [[hour|HOUR]], [[minute|MINUTE]], [[month|MONTH]], [[now|NOW]], [[second|SECOND]], [[time|TIME]]
[[day|DAY]], [[hour|HOUR]], [[minute|MINUTE]], [[month|MONTH]], [[now|NOW]], [[second|SECOND]], [[time|TIME]]
[[Category:Language Reference]]

Revision as of 04:30, 17 August 2012

Year(date)

Description

Year returns an integer, that represents the year of the given date.The required parameter, date, can be any expression that represents a date.

Example

Rem Year Example
'Year returns year of a date as an integer
Dim IndepYear, Birthyear
IndepYear = Year("July 4, 1776")
Print "YEAR of July 4, 1776:", IndepYear
Birthyear = Year("12/27/70")
Print "YEAR of 12/27/70:", Birthyear

Output

Year of July 4, 1776:      1776
Year of 12/27/70:    1970

Related Items

DAY, HOUR, MINUTE, MONTH, NOW, SECOND, TIME