From: Devi Web Development Date: 2007-11-18T13:53:31+09:00 Subject: Re: make a hash object to string object as look like a hash ? > now i am facing new problem.... > > > h={:a=>'aaa',:f=>BigDecimal.new("10")} > h.inspect -----> {:f=>#, > :a=>"aaa"} > > i want like this----->{:f=>10, :a=>"aaa"} I would say this: result='{' h.each_key do |key| result<'<' if /^