On May 11, 2011, at 11:35 , Joel wrote: > Thx > > Paul > > My string aint that simple its just that if it works for this simple example > it will work for my string therefor I just used the "a b c d e f" syntax.
> strsplit(string," ") [[1]] [1] "a" "b" "c" "d" "e" "f" > strsplit(string," ")[[1]] [1] "a" "b" "c" "d" "e" "f" > for(i in strsplit(string," ")[[1]]) cat(i, "\n") a b c d e f > cat(strsplit(string," ")[[1]], sep="\n") a b c d e f > -- Peter Dalgaard Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, Denmark Phone: (+45)38153501 Email: pd....@cbs.dk Priv: pda...@gmail.com ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.