3 个版本 (稳定)
1.0.1 | 2019年7月21日 |
---|---|
1.0.0 | 2019年7月19日 |
0.1.0 | 2019年7月19日 |
#1643 in 解析器实现
41,524 每月下载量
在 100 个 crate 中使用 (直接使用 8)
14KB
126 行
UTF-8 解码
此 crate 提供了实现 Iterator
特质的增量 UTF-8 解码迭代器。这些迭代器是围绕 u8
字节迭代器的包装器。
解码器
Decoder
结构体包装 Iterator<Item = u8>
迭代器。例如,您可以使用它来解码 u8
切片。
extern crate utf8_decode;
use utf8_decode::Decoder;
fn main() -> std::io::Result<()> {
let bytes = [72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33, 32, 240, 159, 140, 141];
let decoder = Decoder::new(bytes.iter().cloned());
let mut string = String::new();
for c in decoder {
string.push(c?);
}
println!("{}", string);
Ok(())
}
不安全解码器
UnsafeDecoder
包装 Iterator<Item = std::io::Result<u8>>
迭代器。例如,您可以使用它来解码 UTF-8 编码的文件。
extern crate utf8_decode;
use std::fs::File;
use std::io::Read;
use utf8_decode::UnsafeDecoder;
fn main() -> std::io::Result<()> {
let file = File::open("examples/file.txt")?;
let decoder = UnsafeDecoder::new(file.bytes());
let mut string = String::new();
for c in decoder {
string.push(c?);
}
println!("{}", string);
Ok(())
}
许可证
根据以下任一许可证授权:
- Apache 许可证 2.0 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则您提交的任何贡献,根据 Apache-2.0 许可证定义,均应按上述方式双许可,不附加任何额外条款或条件。