rustHow to format dates and times in Rust?
Rust has a library called chrono which provides functions for formatting dates and times.
The following example shows how to format a date and time using chrono:
use chrono::{DateTime, Utc};
fn main() {
// Create a DateTime object
let dt = Utc::now();
println!("Current date and time: {}", dt);
// Format the DateTime object
let formatted_dt = dt.format("%Y-%m-%d %H:%M:%S").to_string();
println!("Formatted date and time: {}", formatted_dt);
}
The output of the above code would be:
Current date and time: 2020-11-09 11:55:06.874117 UTC
Formatted date and time: 2020-11-09 11:55:06
More of Rust
- How to replace a capture group using Rust regex?
- How to match the end of a line in a Rust regex?
- How to extract data with regex in Rust?
- How to use regex with bytes in Rust?
- How to use regex to match a double quote in Rust?
- How to push an element to a Rust slice?
- How to perform matrix operations in Rust?
- How to calculate the inverse of a matrix in Rust?
- How to parse JSON string in Rust?
- How to add matrices in Rust?
See more codes...