Re: [R] Replacing double-quote with backtick

2008-08-06 Thread Uwe Ligges
Gundala Viswanath wrote: Hi, How can I change the back quoted strings below print(x) [1] "foo" [1] "bar" into [1]`foo` [2]`bar` Because later I want to access a named list with this string: mylist$`foo` mylist$`bar` I can't do it with: mylist$"foo" mylist$"bar" In fact you want to

[R] Replacing double-quote with backtick

2008-08-05 Thread Gundala Viswanath
Hi, How can I change the back quoted strings below > print(x) [1] "foo" [1] "bar" into [1]`foo` [2]`bar` Because later I want to access a named list with this string: mylist$`foo` mylist$`bar` I can't do it with: mylist$"foo" mylist$"bar" - Gundala Viswanath Jakarta - Indonesia