fork(1) download
  1. # -*- encoding: UTF-8 -*-
  2. require 'json'
  3.  
  4. # data : どこぞから受け取る文字列(中身はJson_string風文字列)データ
  5. data='{"a": 1,"b": 1,"c": 88},{"a": 1,"b": 2,"c": 82},{"a": 1,"b": 3,"c": 79}'
  6.  
  7. aj=Array[data]
  8. #puts aj
  9.  
  10. aj=JSON[aj]
  11.  
  12. p aj
  13. p aj.class
  14.  
  15. # 最終的には各keyとvalueを取得したい
  16. #aj.each do |m|
  17. # p m["a"]
  18. # p m["b"]
  19. # p m["c"]
  20. #end
  21.  
  22.  
Success #stdin #stdout 0.02s 8112KB
stdin
Standard input is empty
stdout
"[\"{\\\"a\\\": 1,\\\"b\\\": 1,\\\"c\\\": 88},{\\\"a\\\": 1,\\\"b\\\": 2,\\\"c\\\": 82},{\\\"a\\\": 1,\\\"b\\\": 3,\\\"c\\\": 79}\"]"
String