Hour: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 25: Line 25:


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Date and Time]

Revision as of 18:59, 13 September 2012

Hour(time)

Description

Hour returns a whole number ranging from 0 to 23 that represents the hour of day of a given time. The required parameter, time, can be any numeric or string expression, or any expression that represents a time.

Example

Rem Hour Example
'Hour returns hour of day from a time
Print "Hour of " & FormatDateTime(Now,4) & _ "is " & Hour(Now)

Output

The Hour of 8/18/1998 10:52:44 PM is 22
(sample date output is system dependant)

Related Items

Day, Minute, Month, Now, Second, Time, Year

[[Category:Date and Time]