I have a column name Food_Q_74 in a loop that becomes Food_Q_75 Food_Q_76 etc
I need to make it look like Q_74_A1, Q_75_A1 etc
I need to delete Food_ at the beginning and add _A1 at the end. So I am NOT adding a prefix as suggested. I am not only pasting at the end.
Any real help would be appreciated.
gsub('^Food_',' ',colnames(df$columns))
this deletes the Food_ but I can not figure out the code to add a suffix.
Also, when I run that in R it does not change the column name. When I run it in the console it shows the deletion. ???
I thought ^ was for the start and $ for the end so I tried gsub('^Food_$ '',_A1',df$columns) but this is wrong.
You could simply pasting the interim result together with "_A1":
An alternative to
paste0
would bestr_c
from thestringr
package.