如何从输入中读取单个字符作为u8?

时间:2015-06-06 04:35:28

标签: input rust stdin

我目前正在为this language建立一个简单的口译员来进行练习。唯一需要克服的问题是从用户输入中读取单个字节作为字符。到目前为止,我有以下代码,但我需要一种方法将第二行的String转换为u8或我可以投射的另一个整数:

let input = String::new()
let string = std::io::stdin().read_line(&mut input).ok().expect("Failed to read line");
let bytes = string.chars().nth(0) // Turn this to byte?

以字节为单位的值应为u8,我可以将其转换为i32以便在别处使用。也许有一种更简单的方法可以做到这一点,否则我将使用任何有效的解决方案。

2 个答案:

答案 0 :(得分:11)

只读取一个字节并将其转换为i32

use std::io::Read;

let input: Option<i32> = std::io::stdin()
    .bytes() 
    .next()
    .and_then(|result| result.ok())
    .map(|byte| byte as i32);

println!("{:?}", input);

答案 1 :(得分:2)

首先,让您的输入变为可变,然后使用bytes()代替chars()

let mut input = String::new();
let string = std::io::stdin().read_line(&mut input).ok().expect("Failed to read line");
let bytes = input.bytes().nth(0).expect("no byte read");

请注意,Rust字符串是一系列UTF-8代码点,不一定是字节大小的。根据您要实现的目标,使用char可能是更好的选择。