这是我的字符串
"{web:{url:http://www.example.com,toke:somevalue},username:person}"
我想将其转换为哈希,如下所示:
```
{
'web' => {
'url' => "http://www.example.com",
'token' => 'somevalue'
},
'username' => "person"
}
```
简单的解析器,仅在几个示例上进行了测试。
用法:
parse_string("{web:{url:http://www.example.com,toke:somevalue},username:person}")
=> {"web"=>{"url"=>"http://www.example.com", "toke"=>"somevalue"}, "username"=>"person"}
解析器代码:
class ParserIterator
attr_accessor :i, :string
def initialize string,i=0
@i=i
@string=string
end
def read_until(*sym)
res=''
until sym.include?(s=self.curr)
throw 'syntax error' if s.nil?
res+=self.next
end
res
end
def next
self.i+=1
self.string[self.i-1]
end
def get_next
self.string[self.i+1]
end
def curr
self.string[self.i]
end
def check(*sym)
throw 'syntax error' until sym.include?(self.next)
end
def check_curr(*sym)
throw 'syntax error' until sym.include?(self.curr)
end
end
def parse_string(str)
parse_hash(ParserIterator.new(str))
end
def parse_hash(it)
it.check('{')
res={}
until it.curr=='}'
it.next if it.curr==','
k,v=parse_pair(it)
res[k]=v
end
it.check('}')
res
end
def parse_pair(it)
key=it.read_until(':')
it.check(':')
value=(it.curr=='{' ? parse_hash(it) : it.read_until(',','}'))
return key,value
end
您必须编写一个自定义解析器。它几乎是 json,但由于没有引用值,因此不会使用 JSON 解析器解析,因此除非您可以获得引用值,否则您必须手动解析它。
处理值中的冒号、逗号和大括号将是一个挑战。
我建议使用 ActiveSupport::JSON.decode 假设您有可用的 gem 或愿意将其包含在您的 gem 列表中。
一个问题是拥有一串json。所以如果你有哈希,你可以调用 #to_json 来获取 json 字符串。例如这有效:
str = '{"web":{"url":"http://www.example.com","toke":"somevalue"},"username":"person"}'
ActiveSupport::JSON.decode(str)