Read lines from file, iterate over each line and each character in that line

前端 未结 2 1652
小鲜肉
小鲜肉 2021-01-21 03:20

I need to read a file, get each line, iterate over each line and check if that line contains any character from "aeiuo" and if it contains at least 2 of the characters

2条回答
  •  有刺的猬
    2021-01-21 03:28

    This works, thanks to the nice people on /r/rust:

    use std::error::Error;
    use std::fs::File;
    use std::io::BufReader;
    use std::io::prelude::*;
    use std::path::Path;
    
    fn is_vowel(x: &char) -> bool {
        "aAeEiIoOuU".chars().any(|y| y == *x)
    }
    
    fn is_umlaut(x: &char) -> bool {
        "äÄüÜöÖ".chars().any(|y| y == *x)
    }
    
    fn valid(line: &str) -> bool {
        line.chars().all(|c| !is_vowel(&c)) && line.chars().filter(is_umlaut).fuse().nth(1).is_some()
    }
    
    fn main() {
        // Create a path to the desired file
        let path = Path::new("c.txt");
        let display = path.display();
        // Open the path in read-only mode, returns `io::Result`
        let file = match File::open(&path) {
            Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)),
            Ok(file) => file,
        };
        let reader = BufReader::new(file);
        for line in reader.lines() {
            match line {
                Ok(line) => {
                    if valid(&line) {
                        println!("{}", line)
                    }
                }
                Err(e) => println!("ERROR: {}", e),
            }
        }
    }
    

提交回复
热议问题