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 match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to split a string with Rust regex?
- How to iterate over a Rust slice with an index?
- How to use negation in Rust regex?
- How to use regex captures in Rust?
- Regex example to match multiline string in Rust?
- How to get a capture group using Rust regex?
- How to use modifiers in a Rust regex?
- How to create a HashMap of structs in Rust?
See more codes...