Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,652 questions

51,529 answers

573 users

How to convert hh:mm:ss to minutes in Rust

1 Answer

0 votes
fn hhmmsstominutes(hhmmss: &str) -> f64 {
    let time: Vec<i32> = hhmmss
        .split(':')
        .map(|s| s.parse::<i32>().unwrap_or(0))
        .collect();

    (time[0] * 60) as f64 + time[1] as f64 + (time[2] as f64 / 60.0)
}

fn main() {
    println!("{}", hhmmsstominutes("2:30:00"));
    println!("{}", hhmmsstominutes("2:35:30"));
    println!("{}", hhmmsstominutes("5:00:45"));
}



/*
run:

150
155.5
300.75

*/

 



answered Apr 17, 2025 by avibootz

Related questions

1 answer 60 views
1 answer 61 views
1 answer 76 views
1 answer 65 views
1 answer 59 views
1 answer 113 views
1 answer 72 views
...