1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
### jsoncons::jsonpath::remove
```cpp
#include <jsoncons_ext/jsonpath/jsonpath.hpp>
template <typename Json>
std::size_t remove(Json& root, const basic_json_location<Json::char_type>& location); (1)
template <typename Json>
std::size_t remove(Json& root, const jsoncons::basic_string_view<Json::char_type>& path_string); (2)
```
(1) Removes a single node at the specified location. Returns the number of nodes removed (0 or 1).
(2) Finds all the nodes that match the given JSONPath expression and removes them one by one. Returns the number of nodes removed.
#### Parameters
<table>
<tr>
<td>root</td>
<td>Root JSON value</td>
</tr>
<tr>
<td>location</td>
<td>A <a href="basic_json_location.md">basic_json_location</a></td>
</tr>
</table>
#### Return value
The number of items removed.
### Exceptions
None
### Examples
#### Remove nodes one by one at a specified location
```cpp
#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpath/jsonpath.hpp>
using jsoncons::json;
namespace jsonpath = jsoncons::jsonpath;
int main()
{
std::string json_string = R"(
{
"books":
[
{
"category": "fiction",
"title" : "A Wild Sheep Chase",
"author" : "Haruki Murakami",
"price" : 22.72
},
{
"category": "fiction",
"title" : "The Night Watch",
"author" : "Sergei Lukyanenko",
"price" : 23.58
},
{
"category": "fiction",
"title" : "The Comedians",
"author" : "Graham Greene",
"price" : 21.99
},
{
"category": "memoir",
"title" : "The Night Watch",
"author" : "Phillips, David Atlee"
}
]
}
)";
json doc = json::parse(json_string);
auto expr = jsonpath::make_expression<json>("$.books[?(@.category == 'fiction')]");
std::vector<jsonpath::json_location> locations = expr.select_paths(doc,
jsonpath::result_options::sort_descending | jsonpath::result_options::sort_descending);
for (const auto& location : locations)
{
std::cout << jsonpath::to_string(location) << "\n";
}
std::cout << "\n";
for (const auto& location : locations)
{
jsonpath::remove(doc, location);
}
std::cout << jsoncons::pretty_print(doc) << "\n\n";
}
```
Output:
```
$['books'][2]
$['books'][1]
$['books'][0]
{
"books": [
{
"author": "Phillips, David Atlee",
"category": "memoir",
"title": "The Night Watch"
}
]
}
```
#### Remove nodes in a single step
```cpp
#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpath/jsonpath.hpp>
using jsoncons::json;
namespace jsonpath = jsoncons::jsonpath;
int main()
{
std::string json_string = R"(
{
"books":
[
{
"category": "fiction",
"title" : "A Wild Sheep Chase",
"author" : "Haruki Murakami",
"price" : 22.72
},
{
"category": "fiction",
"title" : "The Night Watch",
"author" : "Sergei Lukyanenko",
"price" : 23.58
},
{
"category": "fiction",
"title" : "The Comedians",
"author" : "Graham Greene",
"price" : 21.99
},
{
"category": "memoir",
"title" : "The Night Watch",
"author" : "Phillips, David Atlee"
}
]
}
)";
json doc = json::parse(json_string);
std::size_t n = jsonpath::remove(doc, "$.books[?(@.category == 'fiction')]");
std::cout << "Number of nodes removed: " << n << "\n\n";
std::cout << jsoncons::pretty_print(doc) << "\n\n";
}
```
Output:
```
Number of nodes removed: 3
{
"books": [
{
"author": "Phillips, David Atlee",
"category": "memoir",
"title": "The Night Watch"
}
]
}
```
|