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
|
### tokenize
```
array[string] tokenize(string source, string pattern)
```
Returns an array of strings formed by splitting the source string into an array of strings, separated by substrings that match the given regular expression pattern.
It is a type error if either argument is not a string.
### Example
```cpp
#include <iostream>
#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpath/jsonpath.hpp>
using json = jsoncons::json;
namespace jsonpath = jsoncons::jsonpath;
int main()
{
std::string data = R"(
{
"books":
[
{
"title" : "A Wild Sheep Chase",
"author" : "Haruki Murakami"
},
{
"title" : "Almost Transparent Blue",
"author" : "Ryu Murakami"
},
{
"title" : "The Quiet American",
"author" : "Graham Greene"
}
]
}
)";
json j = json::parse(data);
// All titles whose author's last name is 'Murakami'
std::string expr = R"($.books[?(tokenize(@.author,'\\s+')[-1] == 'Murakami')].title)";
json result = jsonpath::json_query(j, expr);
std::cout << pretty_print(result) << "\n\n";
}
```
Output:
```json
[
"A Wild Sheep Chase",
"Almost Transparent Blue"
]
```
|