Skip to content

Instantly share code, notes, and snippets.

View viktorsml's full-sized avatar
🧔
hello there

Victor Samuel viktorsml

🧔
hello there
View GitHub Profile
@gsscoder
gsscoder / ConvertTo-PascalCase.ps1
Last active February 16, 2021 22:15
PowerShell function to convert kebab-case to PascalCase
# 'hello-wonderful-world' | ConvertTo-PascalCase
# outcome: HelloWonderfulWorld
function ConvertTo-PascalCase([Parameter(ValueFromPipeline)] [string] $text) {
($text -split '-' | ForEach-Object {
"$($_.ToCharArray()[0].ToString().ToUpper())$($_.Substring(1))" }) -join ''
}