[R] opposite function of strsplit() ?

2003-11-07 Thread Ragnhild Sørum
Hi, I what to solve this problem: alfab - ABCEDFG#[1] ABCEDFG chara - strsplit(alfab, )#[1] A B C E D F G Then I do some changes before I want the character together again, say, remove two letters. Now, chara is A B E D G. Is there any opposite

Re: [R] opposite function of strsplit() ?

2003-11-07 Thread Uwe Ligges
Ragnhild Sørum wrote: Hi, I what to solve this problem: alfab - ABCEDFG#[1] ABCEDFG chara - strsplit(alfab, )#[1] A B C E D F G Then I do some changes before I want the character together again, say, remove two letters. Now, chara is A B E D G.

Re: [R] opposite function of strsplit() ?

2003-11-07 Thread Prof Brian Ripley
?paste On Fri, 7 Nov 2003, Ragnhild Sørum wrote: I what to solve this problem: alfab - ABCEDFG#[1] ABCEDFG chara - strsplit(alfab, )#[1] A B C E D F G Then I do some changes before I want the character together again, say, remove two