t_wの輪郭

Rust文字列String&str

to_lowercase

2022/2/23 23:55:00

文字列を小文字にするメソッド

assert_eq!("Rust".to_lowercase(), "rust");
assert_eq!(String::from("Rust").to_lowercase(), String::from("rust"));
あれ