Is there support in Ruby for (for lack of a better word) non-escaped (verbatim) strings?
Like in C#:
@"c:\Program Files\"
...or in Tcl:
{c:\Program Files\}
|
feedback
|
|
Yes, you need to prefix your string with The one you want is The pickaxe book covers this nicely here, section is General Delimited Input. | |||||||||||
feedback
|
|
Besides %q{string}, you can also do the following:
The delimiters are arbitrary strings, conventionally in uppercase. | |||
|
feedback
|
|
You can just use a single quoted string.
| |||
|
feedback
|
|
This has a couple examples that may be what you are looking for: Ruby Syntax | |||
|
feedback
|
Or if you want to interpret
| |||
|
feedback
|
|
I can't seem to find anything that doesn't escape... I've tried all of these, maybe I've got an old version of ruby. Basically, no matter how I try to write a\b, it always escapes the central slashes to a single one. | |||
|
feedback
|
|
Even this board escaped it - I mean a\\b | |||
|
feedback
|