Re: [R] Compiling C-code in Windows

2011-05-31 Thread Tom Osborn
You could use cygwin's cc/gcc, or the Watcom opensource compiler. [Watcom used to be a commercial compiler which ceased and has become an open project]. But listen to people who've experienced the options. [Not I]. Cheers, Tom. - Original Message - From: Petar Milin To: R-HELP

Re: [R] Remove all whitespaces

2011-05-05 Thread Tom Osborn
sed? 1,$s/ //g - Original Message - From: Joel To: r-help@r-project.org Sent: Thursday, May 05, 2011 6:50 PM Subject: [R] Remove all whitespaces Hi I got a string that looks something like this 1 2 3 4 5 6 7 8 9 ... and I want it to be 123456789... So I want