Skip to content

How to disable character escaping ?

3 messages · Leon Yee, Brian Ripley

#
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? 
Thanks.

Regards,
Leon
#
On Tue, 2 Sep 2008, Leon Yee wrote:

            
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.
1 day later
#
Thank you, Professor Ripley. It is exactly what I need.

Best wishes!
Leon
Prof Brian Ripley wrote: