Empty element in string array?

%w(a \ b) #-> [“a”, " ", “b”]

is it possible to get output [“a”, “”, “b”] ?

On 3/6/06, Simon S. [email protected] wrote:

%w(a \ b) #-> [“a”, " ", “b”]

is it possible to get output [“a”, “”, “b”] ?

argh… nevermind

%W(a #{} b) #=> [“a”, “”, “b”]