string转换json
时间: 2023-06-05 19:08:33 浏览: 124
string转json
4星 · 用户满意度95%
很高兴回答您的问题!可以使用 json 库将 string 转换为 JSON 格式。下面是使用 C++ 中的 json 库进行转换的示例代码:
```cpp
#include <iostream>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
std::string str = "{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}";
// 将 string 转换为 JSON 对象
json j = json::parse(str);
// 输出 JSON 对象中的属性
std::cout << "Name: " << j["name"] << std::endl;
std::cout << "Age: " << j["age"] << std::endl;
std::cout << "City: " << j["city"] << std::endl;
return 0;
}
```
这段代码将输出以下结果:
```
Name: John
Age: 30
City: New York
```
希望这个答案可以帮助到您,谢谢!
阅读全文