How to create a symbol from a string that has whitespaces?

前端 未结 4 983
南笙
南笙 2021-02-05 14:35

I am creating a Ruby hash for movie names storage.

When the hash\'s keys are strings that contains whitespaces, it works just fine.

As in:

movies =

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-05 15:07

    I'm not sure why you want to use symbols when you want spaces in the key values, but you can do that. You just can't do it using the : syntax...

    {:Avatar => 5, :"Lord of the rings" => 4, :Godfather => 4}
    

提交回复
热议问题