-
so i have this json: {
"projects": [
{
"name": "aaa",
"language": "bbb",
"path": "ccc/ddd"
},
{
"name": "eee",
"language": "fff",
"path": "ggg/hhh"
}
]
} And the I would like the "name" value of the json object to go into the Is this possible? |
Beta Was this translation helpful? Give feedback.
Answered by
nlohmann
Apr 23, 2021
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nlohmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
items()
function should be helpful here.