DayAsString(daynum)
Last updated November 01, 2002
Version: 1 | Requires: CF5 | Library: DateLib
Description:
Returns a string representation of the numeric day value passed into it.
Return Values:
Returns a string.
Example:
<cfoutput>
Today is the #DayAsString(Day(Now()))#<br>
Today is the #DayAsString(1)#<br>
Today is the #DayAsString(11)#<br>
Today is the #DayAsString(21)#<br>
Today is the #DayAsString(31)#<br>
</cfoutput>
Parameters:
Name | Description | Required |
---|---|---|
daynum | Day number to convert. | Yes |
Full UDF Source:
/**
* Returns a string for a day value.
*
* @param daynum Day number to convert. (Required)
* @return Returns a string.
* @author Larry Juncker (ljuncker@aljcompserv.com)
* @version 1, November 1, 2002
*/
function dayAsString(daynum) {
var dayList="First,Second,Third,Fourth,Fifth,Sixth,Seventh,Eighth,Ninth,Tenth,Eleventh,Twelveth,Thirteenth,Fourteenth,Fifteenth,Sixteenth,Seventeenth,Eighteenth,Nineteenth,Twentieth,Twenty First,Twenty Second,Twenty Third,Twenty Fourth,Twenty Fifth,Twenty Sixth,Twenty Seventh,Twenty Eighth,Twenty Ninth,Thirtieth,Thirty First";
return ListGetAt(dayList,daynum);
}
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016