[R] changing single to double backslash

2006-05-17 Thread Cézar Freitas
Hi, all. I didn't find something like this in the faq
list:

I wound like build a function to substitute single
backslashes in a string to double:
ChangeSlash-function(dir) ...

so

ChangeSlash(C:\mydocs\test)

returns

C:\\mydocs\\test

Thanks,
C.





___ 
Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de e-mail no celular e 
anti-spam realmente eficaz. 
http://br.info.mail.yahoo.com/

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


Re: [R] changing single to double backslash

2006-05-17 Thread Prof Brian Ripley

On Wed, 17 May 2006, Cézar Freitas wrote:


Hi, all. I didn't find something like this in the faq
list:


Well, the FAQ and the rw-FAQ suggest that you need to use doubled 
backslashes when entering the string.



I wound like build a function to substitute single
backslashes in a string to double:
ChangeSlash-function(dir) ...

so

ChangeSlash(C:\mydocs\test)

returns

C:\\mydocs\\test


This is not possible: C:\mydocs\test is parsed with \t indicating a tab
and \m indicating m.

--
Brian D. Ripley,  [EMAIL PROTECTED]
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, UKFax:  +44 1865 272595__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html