Repeat sequence of symbols.
repeat_symbol(text, length.out)
repeat_symbol_2(text = " ", times)(character) The symbol (or sequence of symbols) to be repeated until desired length is achieved.
(integer) The total length (in characters) of the sequence.
(integer) Times to repeat the sequence.
Sting of defined length.
repeat_symbol(".", 10)
#> [1] ".........."
repeat_symbol("..+", 10)
#> [1] "..+..+..+."