rustHow to iterate lines in file in Rust
Iterating lines in a file in Rust is a simple task. The std::fs::File
type provides a lines
method which returns an iterator over the lines of the file. The following example code reads a file line by line and prints each line to the console:
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main() {
let file = File::open("my_file.txt").unwrap();
let reader = BufReader::new(file);
for line in reader.lines() {
println!("{}", line.unwrap());
}
}
Output example
Line 1
Line 2
Line 3
Code explanation
use std::fs::File
: imports theFile
type from thestd::fs
module.let file = File::open("my_file.txt").unwrap()
: opens the filemy_file.txt
and stores the result in thefile
variable. Theunwrap
method is used to handle any errors that may occur.let reader = BufReader::new(file)
: creates aBufReader
from thefile
variable.for line in reader.lines()
: iterates over the lines of thereader
variable.println!("{}", line.unwrap())
: prints each line to the console. Theunwrap
method is used to handle any errors that may occur.
Helpful links
Related
- How to loop until error in Rust
- How to iterate linked list in Rust
- How to iterate over string in Rust
- How to iterate a map in Rust
- Rust for loop range inclusive example
- How to do a for loop with index in Rust
- How to iterate in pairs in Rust
- How to loop N times in Rust
- Rust negative for loop example
- Rust parallel loop example
More of Rust
- Hashshet example in Rust
- How to convert Rust bytes to hex?
- How to convert a Rust HashMap to a JSON string?
- How to convert a Rust HashMap to JSON?
- How to get the last element of a Rust slice?
- How to use non-capturing groups in Rust regex?
- How to use groups in a Rust regex?
- How to match the end of a line in a Rust regex?
- How to escape dots with regex in Rust?
- How to use regex to match a group in Rust?
See more codes...