Add Remove Character. fn main() { let mut a: String = "Rat".to_string(); println!("{}", a); // Rat a.remove(0); println!
確定! 回上一頁