有没有办法在 ruby 中将此字符串转换为哈希值?
{"table_no"=>nil, "name"=>"Kelly Shaye Gan", "account_id"=>1}
我的意思是我确信有;只是花了几个小时试图弄清楚。我认为答案就在这里: 在 Ruby 中将特定字符串映射到哈希的最有效方法,但我不是正则表达式方面的专家,所以我不确定将哪个表达式插入到扫描中。
{"table_no"=>nil, "name"=>"Kelly Shaye Gan", "account_id"=>1}
I mean I'm sure there is; just spent couple of hours trying to figure it out. I think the answer lies here: Most efficient way to map a specific string into a hash in Ruby, but I'm not an expert in regex, so I'm not sure which expression to plug into the scan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确定输入始终安全,则可以对其进行评估:
the_hash = eval(the_string)
If you're sure the input is always safe, you can eval it:
the_hash = eval(the_string)