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\}
|
1
|
|
|
|
|
|
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. |
|||
|
|
|
|
This has a couple examples that may be what you are looking for: Ruby Syntax |
||
|
|
|
|
Besides %q{string}, you can also do the following:
The delimiters are arbitrary strings, conventionally in uppercase. |
||
|
|
|
|
Or if you want to interpret
|
||
|
|
|
|
You can just use a single quoted string.
|
||
|
|
|
|
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. |
||
|
|
|
|
Even this board escaped it - I mean a\\b |
||
|