Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
fn main() { let s = "rust c c++ rust python java rust"; let last_space_index = s.rfind(' ').unwrap(); let s = &s[..last_space_index]; println!("{}", s); } /* run: rust c c++ rust python java */