Skip to content
Prev 256223 / 398506 Next

Very simple question

Hi,

I have a very simple doubt.

Look:

 > teste <- c("A","B","C")

 > teste2 <- paste(teste[1],teste[2],teste[3],sep="+")
 > teste2
[1] "A+B+C"
 >

How to make it automatic, like I try to use paste(teste,sep="+") but the 
paste dont get the teste elements separately to join again in a unique 
element.

Exist any function to associated with paste make this result more 
automatically.

Thanks
Ronaldo