当前位置:  开发笔记 > 编程语言 > 正文

Ruby中的符号替换

如何解决《Ruby中的符号替换》经验,为你挑选了2个好方法。

我有一个由其他人生成的地图,其数据结构如下:

x = {"city": "London", "country": "England", "region": "Europe"}

我想在Ruby中操纵数据.因此,为了能够让Ruby了解它是一张地图,我需要将所有内容替换":""=>".有没有一种快速的方法可以在一行中实现这一目标?



1> Subba Rao..:

你需要安装这个宝石json

sudo gem install json

    require 'json'
    JSON.parse('{"city": "London", "country": "England", "region": "Europe"}')


它还避免了将外部输入作为代码执行.

2> collimarco..:
my_text = 'x = {"city": "London", "country": "England", "region": "Europe"}'

# Replace : with =>
ruby_code = t.gsub(':', '=>')

# Evaluate the string as ruby code
eval ruby_code

# Now you can access the hash

x['city'] # => "London"


只有当你确定钥匙或值中永远不会有冒号时才这样做!如果有任何可能性,请使用Subba Rao建议的JSON方法.
这是非常不安全和脆弱的.使用"eval"几乎总是错误的.Subba Rao的答案要好得多.
推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有