On Wed, Jul 9, 2008 at 11:57 AM, jim holtman <[EMAIL PROTECTED]> wrote: > It does have a single \; the printing just shows that it is escaped. > If you 'cat' it to output, you will see: > > >> gsub("'","\\\\'","abc's") > [1] "abc\\'s" >> cat(gsub("'","\\\\'","abc's")) > abc\'s > > Which I think is what you were thinking it would be. So when you > write it out to a file, it will be correct.
Thanks, Jim. That does it. Sean > On Wed, Jul 9, 2008 at 11:49 AM, Sean Davis <[EMAIL PROTECTED]> wrote: >> This is hopefully a simple question. I am trying to escape single >> quotes like so: >> >> abc's >> abc\'s >> >> However, I cannot find an easy way to do that with gsub: >> >> gsub("'","\\\\'","abc's") >> # returns "abc\\'s" >> >> How can I get a single \ in the output? >> >> Thanks, >> Sean >> >> ______________________________________________ >> 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. >> > > > > -- > Jim Holtman > Cincinnati, OH > +1 513 646 9390 > > What is the problem you are trying to solve? > ______________________________________________ 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.