我有以下字符串:
string <- c("100 this is 100 test 100 string")
我想用另一个向量的元素替换上面字符串中的 100:
replacement <- c(1000,2000,3000)
字符串的前 100 应替换为 1000,第二个 100 应替换为 2000,依此类推。生成的字符串应如下所示:
result <- c("1000 this is 2000 test 3000 string")
在 R 中有没有一种有效的方法来做到这一点?
谢谢你。
拉维