ColdFusion - CFML Capitalize First Letter / Uppercase

Thursday, February 9th, 2023 | Coding
Last Modified: 2024-11-10



Uppercase the first character of each word in the string:

Snippet: #ReReplace('text string',"(^[a-z]|\s+[a-z])","\U\1","ALL")#

Input: 'text string'
Output: 'Text String'

Uppercase the first character of the first word in the string:

Snippet: #ReReplace('text string',"(^[a-z])","\U\1","ALL")#

Input: 'text string'
Output: 'Text string'


http://coldfusionsnippets.blogspot.com/2010/03/uppercase-first.html




Input Action Output
A collection of snippets and links that have proven useful for development and programming in ColdFusion, JavaScript, jQuery, PHP, Python, Dell, Minecraft, Apple, Mac, Windows, LINUX, Raspberry Pi, Adobe, CSS, and HTML.

©2024 Input Action Output