How to find the position of the first occurrence of a substring in a string with Rust

1 Answer

0 votes
fn main() {
    let str = "I bought running shoes, but they started running alone, now we are both happy";
    let substring = "running";

    // Find the position of the first occurrence of substring
    match str.find(substring) {
        Some(position) => println!("{}", position),
        None => println!("-1"),
    }
}




/*
run:

9

*/

 



answered Apr 21, 2025 by avibootz
...