「Rust」repeatメソッドで文字列を指定した回数繰り返す

環境
Windows 11 Pro 64bit
rustc 1.62.1

構文
文字列.repeat(繰り返し回数)
reapeatメソッドを使用して文字列を指定した回数繰り返します。

使用例

fn main() {
    let str: String = "arkgame".to_string();

    println!("{}", str.repeat(4)); 
}

実行結果

C:\study\rust>rustc test.rs
C:\study\rust>.\test.exe
arkgamearkgamearkgamearkgame

 

Rust

Posted by arkgame