Skip to content

Instantly share code, notes, and snippets.

@MNashDev
Last active September 28, 2015 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MNashDev/2be8fa3676ffbc2cc7f8 to your computer and use it in GitHub Desktop.
Save MNashDev/2be8fa3676ffbc2cc7f8 to your computer and use it in GitHub Desktop.
Function to change mixed cap. strings into first letter capitalised strings
Function PrettyString
{
Process {$TextInfo = (Get-Culture).TextInfo;$TextInfo.ToTitleCase($_.ToLower())}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment