[R] How to disable character escaping ?

Prof Brian Ripley ripley at stats.ox.ac.uk
Tue Sep 2 06:36:17 CEST 2008


On Tue, 2 Sep 2008, Leon Yee wrote:

> Dear all,
>
> 	I have a string (a file path in windows system) contains several 
> "\"s. When I copy and paste it into R for assignment to an variable, the "\"s 
> are always interpreted as escaping characters. How can I keep it intact?

By reading from a file or connection, as in

foo <- scan("", "", n=1)
c:\tmp\foo

The parser always interprets \ in strings, so you must avoid the parser.

-- 
Brian D. Ripley,                  ripley at stats.ox.ac.uk
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford,             Tel:  +44 1865 272861 (self)
1 South Parks Road,                     +44 1865 272866 (PA)
Oxford OX1 3TG, UK                Fax:  +44 1865 272595



More information about the R-help mailing list