当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust BufRead.lines用法及代码示例


本文简要介绍rust语言中 std::io::BufRead.lines 的用法。

用法

fn lines(self) -> Lines<Self> where    Self: Sized,

在此阅读器的行上返回一个迭代器。

从该函数返回的迭代器将产生以下实例io::Result<String>。返回的每个字符串将不是有一个换行字节(0xA字节)或CRLF(0xD,0xA字节)在最后。

例子

std::io::Cursor 是一种实现 BufRead 的类型。在此示例中,我们使用 Cursor 来遍历字节切片中的所有行。

use std::io::{self, BufRead};

let cursor = io::Cursor::new(b"lorem\nipsum\r\ndolor");

let mut lines_iter = cursor.lines().map(|l| l.unwrap());
assert_eq!(lines_iter.next(), Some(String::from("lorem")));
assert_eq!(lines_iter.next(), Some(String::from("ipsum")));
assert_eq!(lines_iter.next(), Some(String::from("dolor")));
assert_eq!(lines_iter.next(), None);

错误

迭代器的每一行都具有与 BufRead::read_line 相同的错误语义。

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::io::BufRead.lines。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。