Roger Pack wrote:
> Aaron Patterson wrote:
>> mechanize version 0.7.3 has been released!
> 
> Thanks for mechanize--we use mechanize at work and it works well.
> 
> Question on strings:
> I seem incapable of figuring out how to 'recreate' this string in 
> "string" format:
> 
> Here it is byte by byte
> 
> bytes = [100, 101, 110, 116, 226, 60, 56, 48, 62, 60, 57, 57, 62, 115, 
> 32, 112, 114, 101, 118, 105, 111, 117]
> for b in bytes do all << b; end # create the string
> all == "dent?<80><99>s previou" # it compared with itself in string form
> 
> 
> ?
> Thanks!


ascii_codes = [100, 101, 110, 116, 226, 60, 56, 48, 62, 60, 57, 57, 62, 
115,
32, 112, 114, 101, 118, 105, 111, 117]
str = ""

for code in ascii_codes
  str << code.chr
end

puts str
-- 
Posted via http://www.ruby-forum.com/.