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,880 questions

51,806 answers

573 users

How to get the middle words of a string in Rust

1 Answer

0 votes
fn get_middle_words(string: &str) -> String {
    let words: Vec<&str> = string.split_whitespace().collect();
    let num_words = words.len();

    if num_words % 2 == 0 {
        let middle1 = words[num_words / 2 - 1];
        let middle2 = words[num_words / 2];
        
        format!("{} {}", middle1, middle2)
    } else {
        let middle_minus_1 = words[num_words / 2 - 1];
        let middle = words[num_words / 2];
        let middle_plus_1 = words[num_words / 2 + 1];
        
        format!("{} {} {}", middle_minus_1, middle, middle_plus_1)
    }
}

fn main() {
    let string = "c++ c java rust c# python golang";
    
    println!("{}", get_middle_words(string));
}

  
    
/*
run:

java rust c#
  
*/

 



answered Oct 8, 2024 by avibootz
...