I think you are going to have to write A UDF that uses some <cfswitch> tags to piece 
together the output that you would like.

<cfswitch exprtession="theDay">
  <cfcase value="1">
    <cfset dayString = "First">
  </cfcase>
  <cfcase value="2">
    <cfset dayString = "Second">
  </cfcase>
  ...
</cfswitch>

I know it is tedious, but I think it is the simplest way.



---------- Original Message ----------------------------------
From: "Steven A. del Sol" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Tue, 24 Sep 2002 13:34:08 -0700

>Has anyone seen a tag or know of a way to get CF to produce the date in the 
>following format:
>
>09/22/2002 would read......The Twenty Second day of September, in the year 
>Two Thousand and Two.
>
>
>
>Steve
>
>
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to