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

I'm looking at the documentation for FileUtils. I'm confused by the following line:

FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'

What does the %w mean? Can you point me to the documentation?

share|improve this question

4 Answers

up vote 200 down vote accepted

%w(foo bar) is a shortcut for ["foo", "bar"]. Meaning it's a notation to write an array of strings seperated by spaces instead of commas and without quotes around them. You can find a list of ways of writing literals in zenspider's quickref.

share|improve this answer
41  
Also, the parenthesis can be almost any other character such as square brackets %w[...], curly braces %w{...} or even something like exclamation marks %w!...!. All of these have the same behavior (returning an array). – ryanb Aug 13 '09 at 21:40
28  
The easiest way to mnemonically remember what this means is "Whitespace (w) separated array". – Julik Aug 14 '09 at 9:36
1  
See "General Delimited Input" here ruby-doc.org/docs/ProgrammingRuby/html/language.html – Jared Beck May 27 '12 at 18:42
Is it possible to add an empty string to the array? Result should be e.q. ['abc', '', 'def']. – Meinhard Jan 5 at 21:45
7  
If string has spaces, just escape them with \. Ex.: %w(ab\ c def) # => ["ab c", "def"] – Dmitriy Jan 25 at 19:49

I think of %w() as a "word array" - the elements are delimited by spaces.

There are other % things:

  • %r() is another way to write a regular expression.
  • %q() is another way to write a single-quoted string (and can be multi-line, which is useful)
  • %Q() gives a double-quoted string
  • %x() is a shell command

I don't know any others, but there may be some lurking around in there...

share|improve this answer

There is also %s that allows you to create any symbols, for example:

%s|some words|          #Same as :'some words'
%s[other words]         #Same as :'other words'
%s_last example_        #Same as :'last example'

Since ruby 2.0.0 you also have:

%i( a b c )   # => [ :a, :b, :c ]
%i[ a b c ]   # => [ :a, :b, :c ]
%i_ a b c _   # => [ :a, :b, :c ]
# etc...
share|improve this answer

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.