- Feb
- 65
- 1
I have a small .json-file:
{"created_at":"2019-09-06T15:51:10Z","id":19814066,"tag":"v0.9b11"}
Now I want to get the value for tag - what's the best to do that? My only idea was TPIPE, but after RFTMing I have the impression that this can only be used to filter line (e.g. /string always returns "lines"). I thought regex might be nice - but I don't see how I can get the matches of a regex-search...
{"created_at":"2019-09-06T15:51:10Z","id":19814066,"tag":"v0.9b11"}
Now I want to get the value for tag - what's the best to do that? My only idea was TPIPE, but after RFTMing I have the impression that this can only be used to filter line (e.g. /string always returns "lines"). I thought regex might be nice - but I don't see how I can get the matches of a regex-search...