Ruby: character to ascii from a string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:08:29Z http://stackoverflow.com/feeds/question/143822 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string 1 Ruby: character to ascii from a string simontang 2008-09-27T15:34:01Z 2009-10-13T00:53:11Z <p>Hi, this wiki page gave a general idea of how to convert a single char to ascii <a href="http://en.wikibooks.org/wiki/Ruby_Programming/ASCII" rel="nofollow">http://en.wikibooks.org/wiki/Ruby_Programming/ASCII</a></p> <p>But say if I have a string and I wanted to get each character's ascii from it, what do i need to do?</p> <pre><code>"string".each_byte do |c| $char = c.chr $ascii = ?char puts $ascii end </code></pre> <p>It doesn't work because it's not happy with the line $ascii = ?char</p> <pre><code>syntax error, unexpected '?' $ascii = ?char ^ </code></pre> http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string/143834#143834 6 Answer by Konrad Rudolph for Ruby: character to ascii from a string Konrad Rudolph 2008-09-27T15:37:24Z 2008-09-27T15:37:24Z <p>The <code>c</code> variable already contains the char code!</p> <pre><code>"string".each_byte do |c| puts c end </code></pre> <p>yields</p> <pre><code>115 116 114 105 110 103 </code></pre> http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string/143841#143841 0 Answer by simontang for Ruby: character to ascii from a string simontang 2008-09-27T15:39:09Z 2008-09-27T15:39:09Z <p>oh right! stupid me, thanks!</p> http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string/605658#605658 -1 Answer by Sam for Ruby: character to ascii from a string Sam 2009-03-03T09:12:34Z 2009-03-03T09:12:34Z <p>I came accross this when trying to figure out how to get a single ascii value. It was stupidly easy and I feel dumb for having to look it up but I'll post for others.</p> <p>You just use the [] operator, ie:</p> <p>irb(main):001:0> "string"[0] => 115</p> http://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string/1557734#1557734 0 Answer by Mark F for Ruby: character to ascii from a string Mark F 2009-10-13T00:53:11Z 2009-10-13T00:53:11Z <pre><code>"a"[0] </code></pre> <p>or</p> <pre><code>?a </code></pre> <p>Both would return their ASCII equivalent.</p>