重复相同字符串后跟连续整数的最快方法是什么?

What is the quickest way to repeat the same string followed by consecutive integers?

我想制作一个重复一个单词后跟一个连续整数的列,如下所示:

rep1
rep2
rep3
rep4
rep5
…
rep200

可以使用 seq() 命令或类似的命令来完成吗?或者有更好的方法吗?

我们可以使用 paste:

paste0("rep", 1:200)

sprintf

sprintf("rep%d", 1:200)