| str_dup {stringr} | R Documentation |
Duplicate and concatenate strings within a character vector.
Description
Vectorised over string and times.
Usage
str_dup(string, times)
Arguments
string |
Input character vector. |
times |
Number of times to duplicate each string. |
Value
A character vector.
Examples
fruit <- c("apple", "pear", "banana")
str_dup(fruit, 2)
str_dup(fruit, 1:3)
str_c("ba", str_dup("na", 0:5))
[Package stringr version 1.4.0 Index]