Is there a function that can be an alternative to paste ? I would like to know if something like this exists in R:
> buildString ( \"Hi {1}, Have a very nice
I think you are looking for sprintf.
Specifically:
sprintf("Hi %s, Have a very nice %s!","Tom","day")