str_dup {stringr} | R Documentation |
Vectorised over string
and times
.
str_dup(string, times)
string |
input character vector |
times |
number of times to duplicate each string |
character vector
fruit <- c("apple", "pear", "banana") str_dup(fruit, 2) str_dup(fruit, 1:3) str_c("ba", str_dup("na", 0:5))