有没有办法在 ruby​​ 中将此字符串转换为哈希值?

发布于 2024-11-03 04:39:30 字数 321 浏览 0 评论 0原文

{"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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝對不後悔。 2024-11-10 04:39:30

如果您确定输入始终安全,则可以对其进行评估:

the_hash = eval(the_string)

If you're sure the input is always safe, you can eval it:

the_hash = eval(the_string)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文