Capitalizing Words

by Nov 7, 2013

To correctly capitalize words (making sure the first character is capitalized), you can either use regular expressions or a little system function.

With regular expressions, here is what you’d do:

$sentence = 'here is some text where i would like the first letter to be capitalized.'
$pattern = '\b(\w)'
[RegEx]::Replace($sentence, $pattern, { param($x) $x.Value.ToUpper() }) 

And this produces the same results with a little system function:

$sentence = 'here is some text where i would like the first letter to be capitalized.'
(Get-Culture).TextInfo.ToTitleCase($sentence) 

Regular expressions are more complicated but more versatile as well. For example, if you wanted for some weird reason to replace the first letter of each word with its ASCII code, regular expressions can easily do:

$sentence = 'here is some text where i would like the first letter to be capitalized.'
$pattern = '\b(\w)'
[RegEx]::Replace($sentence, $pattern, { param($x) [Byte][Char]$x.Value }) 

Twitter This Tip! ReTweet this Tip!