Yoy cou treat it as a list with / as the delimiter:

   <cfset my_list = "12/34">

   <cfset box_1 = ListGetAt(my_list, 1, "/")>
   <cfset box_2 = ListGetAt(my_list, 2, "/")>

<cfoutput>
  #box_1# #box_2#
</cfoutput>




At 9:37 PM -0700 5/15/2000, Erika Foster wrote:
>I have a field that contains the number of authorized vehicles vs. the
>number of assigned vehicles like this: 14/12.  What function would  I use to
>grab everything to the left of the "/" and then everything to the right of
>the "/" to display them in separate text boxes?
>
>Thanks,
>
>Erika Foster
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to