Created
February 4, 2022 19:37
-
-
Save awakecoding/c0b921bd1c888074788d450b00734425 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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()}) | |
| } | |
| function ConvertTo-SnakeCase | |
| { | |
| [OutputType('System.String')] | |
| param( | |
| [Parameter(Position=0)] | |
| [string] $Value | |
| ) | |
| return [regex]::replace($Value, '(?<=.)(?=[A-Z])', '_').ToLower() | |
| } | |
| function ConvertTo-SnakeCaseObject | |
| { | |
| param( | |
| [Parameter(Position=0)] | |
| $Object | |
| ) | |
| $snake_obj = New-Object -TypeName 'PSObject' | |
| $Object.PSObject.Properties | ForEach-Object { | |
| $name = ConvertTo-SnakeCase -Value ($_.Name | Out-String).Trim() | |
| if ($_.Value -is [string]) { | |
| $value = ($_.Value | Out-String).Trim() | |
| if (![string]::IsNullOrEmpty($value)) { | |
| $snake_obj | Add-Member -MemberType NoteProperty -Name $name -Value $value | |
| } | |
| } else { | |
| $value = $_.Value | |
| $snake_obj | Add-Member -MemberType NoteProperty -Name $name -Value $value | |
| } | |
| } | |
| return $snake_obj | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment