str.bytes()を使えばバイト単位(u8型)で走査できる let hello = "Здравствуйте"; for c in hello.bytes() { println!("{}", c); } ...
確定! 回上一頁