WeekdayName: Difference between revisions
Jump to navigation
Jump to search
m Ghenne moved page Weekdayname to WeekdayName |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
WeekdayName ''number''[, ''abbreviate''[, ''firstdayofweek'']]) | WeekdayName ''number''[, ''abbreviate''[, ''firstdayofweek'']]) | ||
Line 5: | Line 7: | ||
WeekdayName returns a string representing the day of week. The required argument, ''number'', is an integer ranging from 1 to 7 that represents the number of the day of the week. The optional argument, ''abbreviate'', is a boolean expression, if ''abbreviate'' is TRUE the value returned is the three-letter abbreviation of the weekday name, otherwise the full name is returned by default. The optional parameter ''firstdayofweek'' is Sunday, if not specified. | WeekdayName returns a string representing the day of week. The required argument, ''number'', is an integer ranging from 1 to 7 that represents the number of the day of the week. The optional argument, ''abbreviate'', is a boolean expression, if ''abbreviate'' is TRUE the value returned is the three-letter abbreviation of the weekday name, otherwise the full name is returned by default. The optional parameter ''firstdayofweek'' is Sunday, if not specified. | ||
== Example == | == Example (Basic) == | ||
<pre> | <pre> | ||
Rem WeekdayName Example | Rem WeekdayName Example | ||
'WeekdayName returns string name of day | 'WeekdayName returns string name of day | ||
Dim Day1, Day2 | Dim Day1, Day2 | ||
Day1 = 1 | Day1 = 1 | ||
Line 23: | Line 26: | ||
Tue | Tue | ||
</pre> | </pre> | ||
== Related Items == | |||
[[weekday|Weekday]] | |||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Date and Time]] | [[Category:Date and Time]] | ||
[[Category:BASIC Functions]] |
Latest revision as of 15:39, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
WeekdayName number[, abbreviate[, firstdayofweek]])
Description
WeekdayName returns a string representing the day of week. The required argument, number, is an integer ranging from 1 to 7 that represents the number of the day of the week. The optional argument, abbreviate, is a boolean expression, if abbreviate is TRUE the value returned is the three-letter abbreviation of the weekday name, otherwise the full name is returned by default. The optional parameter firstdayofweek is Sunday, if not specified.
Example (Basic)
Rem WeekdayName Example 'WeekdayName returns string name of day Dim Day1, Day2 Day1 = 1 Print WeekdayName(Day1) Day2 = 2 Print WeekdayName(Day2, TRUE, vbMonday)
Output
Sunday Tue