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:06More of Rust
- How to replace a capture group using Rust regex?
- Regex example to match multiline string in Rust?
- How to replace all using regex in Rust?
- Yield example in Rust
- How to match a URL with a regex in Rust?
- How to use non-capturing groups in Rust regex?
- How to convert Rust bytes to a vector of u8?
- How to use regex lookbehind in Rust?
- How do I print the type of a variable in Rust?
- How to replace strings using Rust regex?
See more codes...