Skip to content

Instantly share code, notes, and snippets.

@RafPe
Last active September 1, 2015 11:53
Show Gist options
  • Save RafPe/a3742e82ee261e917a75 to your computer and use it in GitHub Desktop.
Save RafPe/a3742e82ee261e917a75 to your computer and use it in GitHub Desktop.
If you need to change first character in proper way
$variableToChange = "all lowercase"
$result = -join ($variableToChange.Substring(0,1).ToUpper() ,$variableToChange.Substring(1,$variableToChange.Length-1 ) )
(Get-Culture).TextInfo.ToTitleCase('rafpe ninja')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment