Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PowerShellを使用して16進値を比較する方法は?
22 32 44 56 de 4f 3f
これらの値はファイルにあり、それらの中で最大の値を見つけるためにそれらを比較する必要があります。これらは16進値です。
これは方法です:
$n = 22,32,44,56,"de","4f","3f" # or $n = get-content myfilewithHEX.txt [Convert]::ToString( ($n | % { [int]"0x$_" } | Measure-Object -Maximum).maximum , 16)
これは戻りますde
de
別の方法:
( $n | sort { [int]"0x$_" } ) | select -Last 1