sysGetMonthString

Returns the full name of a month from its number (1-12). Takes month (month number 1-12). Returns the full English name of the month.

System

Parameters & Returns

Parameters

month Int

Returns

String

Quick Summary

Returns the full name of a month from its number (1-12). Takes month (month number 1-12). Returns the full English name of the month.

Technical Exegesis...

Converts a month number (1-12) to its full English name. Returns "January" for 1, "February" for 2, through "December" for 12. If the month parameter is outside the valid range (1-12), returns "Invalid".

Month mapping: 1=January, 2=February, 3=March, 4=April, 5=May, 6=June, 7=July, 8=August, 9=September, 10=October, 11=November, 12=December. Useful for displaying month names in user interfaces or formatted date strings.

Example

Example.bam
; No example implemented yet