rustHow to parse JSON string in Rust?
Parsing JSON string in Rust can be done using the serde crate. serde is a powerful library for serializing and deserializing data structures.
Example code
extern crate serde;
extern crate serde_json;
use serde_json::{Result, Value};
fn main() {
// Some JSON input data as a &str. Maybe this comes from the user.
let data = r#"
{
"name": "John Doe",
"age": 43,
"phones": [
"+44 1234567",
"+44 2345678"
]
}"#;
// Parse the string of data into serde_json::Value.
let v: Value = serde_json::from_str(data)?;
// Access parts of the data by indexing with square brackets.
println!("Please call {} at the number {}", v["name"], v["phones"][0]);
}
Output example
Please call John Doe at the number +44 1234567
Code explanation
-
extern crate serde;andextern crate serde_json;: These two lines are used to import theserdeandserde_jsoncrates. -
use serde_json::{Result, Value};: This line imports theResultandValuetypes from theserde_jsoncrate. -
let data = r#" ... "#;: This line creates a string literal containing the JSON data. -
let v: Value = serde_json::from_str(data)?;: This line parses the JSON data into aValuetype. -
println!("Please call {} at the number {}", v["name"], v["phones"][0]);: This line prints out the parsed data.
Helpful links
Related
More of Rust
- How to use regex to match a double quote in Rust?
- How to create a HashMap of structs in Rust?
- How to replace a capture group using Rust regex?
- How to match the end of a line in a Rust regex?
- How to modify an existing entry in a Rust HashMap?
- How do I identify unused variables in Rust?
- How to use negation in Rust regex?
- Regex example to match multiline string in Rust?
- How to use a Rust HashMap in a struct?
- How do I use a variable number of arguments in Rust?
See more codes...