$w(string) ⇒ Array
string
String
Splits a string into an array, treating all whitespace as delimiters.
Equivalent to Ruby's %w{foo bar} or Perl's qw(foo bar).
%w{foo bar}
qw(foo bar)
Related to: Array
Array