Is there an easy way to replace a sub-list of strings in a character vector with another list of strings? something like
gsub(c("a","b"),c("z","y"),a)
or
replace(a,c("a","b"),c("z","y"))
neither of which unfortunately work?
|
|
|
A simple loop using
|
|||
|
|
|
If you are just replacing single characters, then
This question might also be of interest. |
|||
|
|
I could've sworn there was a recursive apply in R, and there is, but it does something very different. Anyhow, here's one:
The example returns |
||||
|
|