User`s guide

APPENDIX A Function Reference
Users Guide 145
uMonth
Description Returns the month of the date specified.
Syntax string uMonth([modifiers])
Parameters
string modifiers (optional)
String specifying a date or date calculation. The default is the
now modifier.
Examples To get the month from a date:
uMonth("now") // returns current month
uMonth("1969-03-13 10:22:23.231") // returns "03"
uMonthName
Description Returns the name of month of the date specified in the current locale language.
Syntax string uMonthName([modifiers])
Parameters
string modifiers (optional)
String specifying a date or date calculation. The default is the
now modifier.
Examples To get the name of month from a date:
uMonthName("now") // returns current name of month
To set the locale to English:
uSetLocale("English")
uMonthName("1969-03-13 10:22:23.231") // returns
"March"
To set the locale to German:
uSetLocale("German")
uMonthName("1969-03-13 10:22:23.231") // returns
"März"
uMonthNameShort
Description Returns the short form of the name of month of the date specified in the current
locale language.
Syntax string uMonthNameShort([modifiers])