PowerShell, as is, has all the tools you need to query JSON and then reshape, re-purpose it to what you need. $json = @" { "locations": [ {"name": "Seattle", "state": "WA"}, {"name": "New York", "state": "NY"}, {"name": "Bellevue", "state": "WA"}, {"name": "Olympia", "state": "WA"} ] } "@ | ConvertFrom-Json $names=(($json.locations | ? state -eq 'wa').name | Sort) -join ',' @{WashingtonCities = $
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く