vote up 3 vote down star
1

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\}
flag

7 Answers

vote up 4 vote down check

Yes, you need to prefix your string with % and then a single character delineating its type.

The one you want is %q{c:\program files\}.

The pickaxe book covers this nicely here, section is General Delimited Input.

link|flag
vote up 1 vote down

This has a couple examples that may be what you are looking for: Ruby Syntax

link|flag
vote up 2 vote down

Besides %q{string}, you can also do the following:

string =<<SQL
  SELECT * 
  FROM Book
  WHERE price > 100.00
  ORDER BY title;
SQL

The delimiters are arbitrary strings, conventionally in uppercase.

link|flag
vote up 0 vote down
mystring = %q["'\t blahblahblah]

Or if you want to interpret \t as tab:

mystring = %Q["'\t blahblahblah]
link|flag
vote up 1 vote down

You can just use a single quoted string.

>> puts "a\tb"
a    b
=> nil
>> puts 'a\tb'
a\tb
=> nil
link|flag
vote up 0 vote down

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.

link|flag
vote up -1 vote down

Even this board escaped it - I mean a\\b

link|flag
You can edit your comments, no need to post a second answer. – Joachim Sauer Dec 10 '08 at 15:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.