Rust replaceメソッドを使って文字列を置換する
環境
Windows 10 Home 64bit
rustc 1.66.0
構文
“対象文字列".replace( “置換する文字列", “置換後の文字列");
「replace()」を使用して文字列を置換します。
使用例
fn main() { let mut str: String = "stucstucstuc".to_string(); println!( "{}", str.replace("stu", "***") ); str = "あストあストあスト".to_string(); println!( "{}", str.replace("スト", "aa") ); }
実行結果
***c***c***c
あaaあaaあaa