From: Pokkai Dokkai Date: 2007-11-18T04:57:02+09:00 Subject: Re: make a hash object to string object as look like a hash ? sorry my correct code is here user_name@host:~$irb irb(main):001:0> h={'k1'=>'v1','k2'=>'v2','k3'=>'v3'} => {"k1"=>"v1", "k2"=>"v2", "k3"=>"v3"} ---->i want as a string object irb(main):004:0> h.to_s k1v1k2v2k3v3 ---->i don't want irb(main):005:0> is there any library in ruby to get this? -- Posted via http://www.ruby-forum.com/.