Skip to content

Instantly share code, notes, and snippets.

@JPRuskin
Created May 2, 2018 11:01
Show Gist options
  • Save JPRuskin/68f131d8833ea940779ffd4695c7fe1b to your computer and use it in GitHub Desktop.
Save JPRuskin/68f131d8833ea940779ffd4695c7fe1b to your computer and use it in GitHub Desktop.
Adds a ScriptMethod to strings, .ToTitle(). Converts to title case.
Update-TypeData -TypeName String -MemberType ScriptMethod -MemberName ToTitle -Force -Value {
(Get-Culture).TextInfo.ToTitleCase($this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment