From: Bill Kelly Date: 2007-11-18T05:06:06+09:00 Subject: Re: make a hash object to string object as look like a hash ? From: "Pokkai Dokkai" > > 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? str = h.inspect Regards, Bill