PowerShellで文字を文字コード順に遷移させる(A→B→C…)

Example

文字を文字コード順に遷移させたい場合。

PS> [char](([byte][char]"A") + 1)
B

スポンサーリンク