camelToSpace(str [, capitalize])
Last updated March 8, 2010
Version: 0 | Requires: ColdFusion MX | Library: StrLib
Description:
This is not about furry puppets in a rocket ship, but a function that takes a camel cased string and returns it lower-cased with spaces between the words. Comes in handy if you want to generate human readable captions from (camel cased) table column names.
Return Values:
Returns a string
Example:
<cfset str='aCamelCasedVariable'>
#camelToSpace(str,true)#
<br/>
#camelToSpace(str)#
</cfoutput>
a very fancy column name
id column
Parameters:
| Name | Description | Required |
|---|---|---|
| str | String to use | Yes |
| capitalize | Boolean to return capitalized words | No |
Full UDF Source:
<cfscript>
/**
* Breaks a camelCased string into separate words
* 8-mar-2010 added option to capitalize parsed words Brian Meloche brianmeloche@gmail.com
*
* @param str String to use (Required)
* @param capitalize Boolean to return capitalized words (Optional)
* @return Returns a string
* @author Richard (brianmeloche@gmail.comacdhirr@trilobiet.nl)
* @version 0, March 8, 2010
*/
function camelToSpace(str) {
var rtnStr=lcase(reReplace(arguments.str,"([A-Z])([a-z])"," \1\2","ALL"));
if (arrayLen(arguments) GT 1 AND arguments[2] EQ true) {
rtnStr=reReplace(arguments.str,"([a-z])([A-Z])","\1 \2","ALL");
rtnStr=uCase(left(rtnStr,1)) & right(rtnStr,len(rtnStr)-1);
}
return trim(rtnStr);
}
</cfscript>
Search CFLib.org
Latest Additions
Tayo Akinmade added
arrayTrim
4 day(s) ago
Will Belden added
longTime
9 day(s) ago
James Sleeman added
quickSort
19 day(s) ago
Ben Forta added
GetHostAddress
22 day(s) ago
Top Rated
EksporSQLData
Rated 5.0, 16 time(s)
backupDatabase
Rated 5.0, 13 time(s)
indentXml
Rated 5.0, 10 time(s)
generateSsccAsn
Rated 5.0, 4 time(s)