Im trying to get a value from an output sample below using a custom app that I ran on powershell
The output looks like this:
---
releaseId: 1124503
releaseName: "Release 3"
releaseDescription: ""
suspended: false
The text I need to get is the releaseId value (1124503) note that this value changes everytime I run the app.
Trying the:
| Select-Object -ExpandProperty releaseId
Doesn’t work.
Any tips?
1