Skip to content

Instantly share code, notes, and snippets.

View awakecoding's full-sized avatar

Marc-André Moreau awakecoding

View GitHub Profile
@awakecoding
awakecoding / PascalSnakeCase.ps1
Created January 22, 2020 01:02
PowerShell ConvertTo-PascalCase, ConvertTo-SnakeCase
function ConvertTo-PascalCase
{
[OutputType('System.String')]
param(
[Parameter(Position=0)]
[string] $Value
)
# https://devblogs.microsoft.com/oldnewthing/20190909-00/?p=102844
return [regex]::replace($Value.ToLower(), '(^|_)(.)', { $args[0].Groups[2].Value.ToUpper()})