On Thursday 03 Apr 2003 1:54 am, John Miyamoto wrote:
> Dear Help,
> Suppose I have a character vector.
>
> x <- c("Bob", "loves", "Sally")
>
> I want to combine it into a single string: "Bob loves Sally" .
y <- paste(c, collapse=" ")
best wishes
Ido