In ruby 1.9 is there a way to define this hash with the new syntax?

irb> { a:  2 }
=> {:a=>2}

irb> { a-b:  2 }
SyntaxError: (irb):5: syntax error, unexpected tLABEL
{ a-b:  2 }
      ^

with the old one, it's working:

irb> { :"a-b" =>  2 }
=> {:"a-b"=>2}
link|improve this question
feedback

3 Answers

up vote 18 down vote accepted

There are some legitimate symbols that cannot be used with the new syntax. I cannot find a reference, but it appears that a symbol name matching /[a-zA-Z_][a-zA-Z_0-9]*/ is allowed with the new syntax. If the symbol name contains special characters such as '-', you have to use the Ruby 1.8 syntax, :'my-symbol-name'

link|improve this answer
1  
Which makes sense; how is the Ruby interpreter supposed to read that, otherwise? – Trevoke Jan 25 '10 at 19:10
10  
I checked in parse.c and it seems that with the new syntax the symbol is parsed as tLabel token. And matching name is more like /[a-zA-Z_][a-zA-Z0-9]/ :-) – MBO Jan 25 '10 at 19:24
@MBO, Extra points for going to the source. I've edited the regex in my answer. Thanks! – Wayne Conrad Jan 25 '10 at 20:11
feedback

I think one day the old syntax could be deprecated.

However, it's possible to write Hash["a-b", 2]

ruby-1.9.3-rc1 :001 > Hash["a-b", 2]
=> {"a-b"=>2}
link|improve this answer
Where did you hear that the old syntax will be deprecated? – Andrew Grimm Dec 13 '11 at 21:48
@AndrewGrimm, I, actually, don't remember. Maybe I heard that here - peepcode.com/blog/2011/rip-ruby-hash-rocket-syntax :). Of course, I can be wrong, but I will not be surprised if they deprecate the old syntax. I've changed "will" to "could" in my answer to be more clear ;) – cutalion Dec 13 '11 at 23:50
feedback

You can combine the old and new syntax:

{a: 1, b: 2, :'c-c' => 3, d: 4}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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