Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:36:18Z http://stackoverflow.com/feeds/question/353326 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/353326/ruby-1-8-and-utf-8-string-case-statment-compare-ruby-on-rails-2-2 1 Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2) ju 2008-12-09T16:16:01Z 2008-12-18T09:31:49Z <p>Hello :)</p> <p>I have a rake task (in lib/tasks directory) that I run with cron on my shared web hosting. The problem is that I want to compare a UTF-8 string using case statment but my source code is not UTF-8 encoded. If I save source code as UTF-8 there is error when I try to start it :(</p> <p>What I have to do? </p> <p>May be read this strings from external UTF-8 txt file?</p> <p>P.S. I'm using Ruby 1.8</p> <p>P.S. I mean compare this way:</p> <pre><code>result = case utf8string when 'АБВ': 1 when 'ГДИ': 2 when 'ЙКЛ': 3 when 'МНО': 4 else 5 end </code></pre> http://stackoverflow.com/questions/353326/ruby-1-8-and-utf-8-string-case-statment-compare-ruby-on-rails-2-2/354272#354272 0 Answer by John Topley for Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2) John Topley 2008-12-09T21:18:39Z 2008-12-09T21:18:39Z <p>Try using the <code>mb_chars</code> method from Rails' <a href="http://api.rubyonrails.org/classes/ActiveSupport/Multibyte/Chars.html" rel="nofollow">ActiveSupport</a> framework:</p> <pre><code>result = case utf8string.mb_chars when 'АБВ': 1 when 'ГДИ': 2 when 'ЙКЛ': 3 when 'МНО': 4 else 5 end </code></pre> http://stackoverflow.com/questions/353326/ruby-1-8-and-utf-8-string-case-statment-compare-ruby-on-rails-2-2/355422#355422 1 Answer by ju for Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2) ju 2008-12-10T08:34:27Z 2008-12-10T08:34:27Z <p>I found that my problem was not in case statment</p> <p>The problem was that when I save my source code in UTF-8 format, my text editor add 3 bytes (BOM) at the beginning to indicate that encoding is UTF-8.</p> <blockquote> <p><strong>Q: What is a BOM?</strong> </p> <p><strong>A:</strong> A byte order mark (BOM) consists of the character code U+FEFF at the beginning of a data stream, where it can be used as a signature defining the byte order and encoding form, primarily of unmarked plaintext files. Under some higher level protocols, use of a BOM may be mandatory (or prohibited) in the Unicode data stream defined in that protocol.</p> </blockquote> <p><a href="http://unicode.org/faq/utf_bom.html#BOM" rel="nofollow">UTF-8, UTF-16, UTF-32 &amp; BOM</a></p> <p>The error that I get was:</p> <pre><code>1: Invalid char `\357' in expression 1: Invalid char `\273' in expression 1: Invalid char `\277' in expression </code></pre> http://stackoverflow.com/questions/353326/ruby-1-8-and-utf-8-string-case-statment-compare-ruby-on-rails-2-2/358847#358847 1 Answer by Keltia for Ruby 1.8 and UTF-8 string case statment compare (Ruby on Rails 2.2) Keltia 2008-12-11T09:57:48Z 2008-12-11T09:57:48Z <p>I'd say you need to change your text editor as BOM is <em>not</em> needed for UTF-8. UTF-8 is not byte-order dependent. See <a href="http://en.wikipedia.org/wiki/UTF-8#Byte-order_mark" rel="nofollow">link text</a> for details.</p>