Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Oliver Haag www.ohcon.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

convert between characters and values

// character to ASCII value: use ?
   1  
   2  ?a     # => 97
   3  ?\n    # => 10


// string to integer: use []
   1  
   2  'a'[0]        # => 97
   3  'hallo'[1]    # => 97


// integer / number to character: use .chr
   1  
   2  97.chr     # => "a"
   3  10.chr     # => "\n"


//more info: "Ruby Cookbook", O'Reilly
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS