> t <- c( + "00000000000000000000000000000000", + "00000000010010010110111111101100", + "00000000100100101101000001011111", + "00000000110111000001000111100011", + "00000001001001010010010100001001", + "00000001011011011111101001101001") > { + cat ('rom_array := (\n'); + for (i in 1:length(t)) { + cat('"', t[i], '"', + ifelse(i == length(t), '', ',\n'), sep='') + }; + cat(')\n'); + } rom_array := ( "00000000000000000000000000000000", "00000000010010010110111111101100", "00000000100100101101000001011111", "00000000110111000001000111100011", "00000001001001010010010100001001", "00000001011011011111101001101001") >
On Tue, May 26, 2009 at 12:30 PM, peng chen <rogerchan2...@gmail.com> wrote: > Hi, R experts: > > I am trying to generate data output in the following format: > > rom_array := ( > "00000000000000000000000000000000", > "00000000010010010110111111101100", > "00000000100100101101000001011111", > "00000000110111000001000111100011", > "00000001001001010010010100001001", > "00000001011011011111101001101001") > > I have all the necessary data line, however, I am having trouble generating > the double quotation marks along with the trailing comma for each line. > > Anyone can help? > > Thanks. > > [[alternative HTML version deleted]] > > ______________________________________________ > 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. > ______________________________________________ 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.