Ruby: character to ascii from a string - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:08:29Zhttp://stackoverflow.com/feeds/question/143822http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143822/ruby-character-to-ascii-from-a-string1Ruby: character to ascii from a stringsimontang2008-09-27T15:34:01Z2009-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#1438346Answer by Konrad Rudolph for Ruby: character to ascii from a stringKonrad Rudolph2008-09-27T15:37:24Z2008-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#1438410Answer by simontang for Ruby: character to ascii from a stringsimontang2008-09-27T15:39:09Z2008-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-1Answer by Sam for Ruby: character to ascii from a stringSam2009-03-03T09:12:34Z2009-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#15577340Answer by Mark F for Ruby: character to ascii from a stringMark F2009-10-13T00:53:11Z2009-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>