rust code:rust let text = "忠犬ハチ公".to_string(); let sub: String = text.chars().take(3).collect(); println!("{}", sub); // => "忠犬ハ"
確定! 回上一頁