Re: [R] help with "\" in strings

2011-04-25 Thread Nutter, Benjamin
elp@r-project.org Subject: Re: [R] help with "\" in strings Josh, Thank you so much!!! Works perfectly! -Rob Robert Schutt III, MD, MCS Resident - Department of Internal Medicine University of Virginia, Charlottesville, Virginia -- View this message in co

Re: [R] help with "\" in strings

2011-04-24 Thread viostorm
Josh, Thank you so much!!! Works perfectly! -Rob Robert Schutt III, MD, MCS Resident - Department of Internal Medicine University of Virginia, Charlottesville, Virginia -- View this message in context: http://r.789695.n4.nabble.com/help-with-in-strings-tp3470

Re: [R] help with "\" in strings

2011-04-24 Thread Uwe Ligges
On 24.04.2011 08:02, Joshua Wiley wrote: Hi Rob, On Sat, Apr 23, 2011 at 7:19 PM, viostorm wrote: I would like to create a "\%" that can be written to a file as I am writing a procedure to output to latex. I can't create a "\%" and it is driving me crazy. Try the fixed = TRUE argument to

Re: [R] help with "\" in strings

2011-04-23 Thread Joshua Wiley
Hi Rob, On Sat, Apr 23, 2011 at 7:19 PM, viostorm wrote: > > I would like to create a "\%" that can be written to a file as I am writing > a procedure to output to latex. > > I can't create a "\%" and it is driving me crazy. Try the fixed = TRUE argument to gsub. This works for me: x = "This i

[R] help with "\" in strings

2011-04-23 Thread viostorm
I would like to create a "\%" that can be written to a file as I am writing a procedure to output to latex. I can't create a "\%" and it is driving me crazy. -- x = "This is a test % string" gsub ("%", "\\%", x) fileConn<-file("c:/biostats/test.txt") writeLi