Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference?

share|improve this question
2  
"%w" is my usual retort to people who get a little too cocky about the readability of Ruby. Works every time. – Craig Stuntz Mar 27 '09 at 17:52

3 Answers

up vote 50 down vote accepted

%w quotes like single quotes '' (no variable interpolation, fewer escape sequences), while %W quotes like double quotes "".

irb(main):001:0> foo="hello"
=> "hello"
irb(main):002:0> %W(foo bar baz #{foo})
=> ["foo", "bar", "baz", "hello"]
irb(main):003:0> %w(foo bar baz #{foo})
=> ["foo", "bar", "baz", "\#{foo}"]
share|improve this answer

%W performs normal double quote substitutions. %w does not.

share|improve this answer

An application I've found for %W vs %w:

greetings = %W(hi hello #{"how do you do"})
# => ["hi", "hello", "how do you do"]
share|improve this answer
Neat hack, thanks! – akuhn May 21 '12 at 0:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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