Inside Coldfusion MX
Mid (string, start, count) Description
Gives x number of characters from a string from the starting point. Example
<cfset exampleString = "(303)445-6790 ext:310" <cfoutput> The extension is: #Mid(exampleString, 19, 3)# </cfoutput> |