Ruby: How to break a potentially unicode string into bytes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:55:52Z http://stackoverflow.com/feeds/question/144380 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144380/ruby-how-to-break-a-potentially-unicode-string-into-bytes 1 Ruby: How to break a potentially unicode string into bytes Atiaxi 2008-09-27T20:20:56Z 2008-11-05T14:32:42Z <p>I'm writing a game which is taking user input and rendering it on-screen. The engine I'm using for this is entirely unicode-friendly, so I'd like to keep that if at all possible. The problem is that the rendering loop looks like this:</p> <pre><code>"string".each_byte do |c| render_this_letter(c) end </code></pre> <p>I don't know a whole lot about i18n, but I know enough to know the above code is only ever going to work for me and people who speak my language. I'd prefer something like:</p> <pre><code>"unicode string".each_unicode_letter do |u| render_unicode_letter(u) end </code></pre> <p>Does this exist in the core distribution? I'm somewhat averse to adding additional requirements to the install, but if it's the only way to do it, I'll live.</p> <p>For extra fun, I have no way of knowing if the string is, in fact, a unicode string.</p> <p>EDIT: The library I'm using can indeed render entire strings, however I'm letting the user edit what comes up on the fly - if they hit 'backspace', essentially, I need to know how many bytes to chop off the end.</p> http://stackoverflow.com/questions/144380/ruby-how-to-break-a-potentially-unicode-string-into-bytes/144617#144617 2 Answer by Gordon Wilson for Ruby: How to break a potentially unicode string into bytes Gordon Wilson 2008-09-27T22:23:26Z 2008-09-27T22:23:26Z <p>Unfortunately ruby 1.8.x has poor unicode support. It's being addressed in 1.9. But in the mean time, libraries like this one (<a href="http://snippets.dzone.com/posts/show/4527" rel="nofollow">http://snippets.dzone.com/posts/show/4527</a>) are a good solution. Using the linked library, your code would look something like this:</p> <pre><code>"unicode_string".each_utf8_char do |u| render_unicode_letter(u) end </code></pre> http://stackoverflow.com/questions/144380/ruby-how-to-break-a-potentially-unicode-string-into-bytes/145994#145994 1 Answer by Cameron Booth for Ruby: How to break a potentially unicode string into bytes Cameron Booth 2008-09-28T14:48:28Z 2008-09-28T14:48:28Z <p>You could try including the <a href="http://api.rubyonrails.org/classes/ActiveSupport/CoreExtensions/String/Unicode.html" rel="nofollow">ActiveSupport::CoreExtensions::String::Unicode</a> module from the rails codebase. </p>