Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/530a54ffd72cf1fe5e9977a9fe9b40cc to your computer and use it in GitHub Desktop.

Select an option

Save trycf/530a54ffd72cf1fe5e9977a9fe9b40cc to your computer and use it in GitHub Desktop.
TryCF Gist
<cfset rsData.PropertyType = "Multifamily">
<cfif len(rsData.PropertyType)>
<cfif rsData.PropertyType neq "multifamily">
<cfset rsData.PropertyType = uCase(left(rsData.PropertyType, 1)) & lCase(right(rsData.PropertyType, len(rsData.PropertyType) - 1))>
<cfelse>
<cfset rsData.PropertyType = "MultiFamily">
</cfif>
</cfif>
<cfdump var="#rsData.PropertyType#">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment