If you can store your values using a delimiter like a ";", then you could use GetToken to extract the parts of your string.
<cfset datetimestring = "jan;12;2001">
<cfset monthpart = GetToken(datetimestring, 1, ";")>
<cfset daypart = GetToken(datetimestring, 2...