1
vote
2answers
44 views

How to replace UTF-8 characters with their character names in Ruby?

I would like to create a bidirectional mapping of Unicode characters to the characters [a-z] and [0-9]. I thought about using the Unicode character names like Left Curly Bracket for {. Unfortunately I ...
2
votes
1answer
34 views

How to remove 4 byte utf-8 characters in Ruby?

Since MySQL's utf8 doesn't support 4 byte characters, I'm looking for a way to detect and eliminate any 4 byte utf8 characters from a string in Ruby. I understand that I can update my table to use ...
1
vote
1answer
37 views

How to work with multibyte strings read from a file in Ruby? See inside

I'm a newbie to Ruby with Perl background. And I got some problems with .reverse of a multibyte string read from an utf-8 encoded file. Code: #!C:\Ruby200-x64\bin\ruby puts ...
0
votes
1answer
48 views

Watir incompatible character encodings

I am writing this bot with ruby and ran into trouble, that showed up to be more complicated, than i would ever thought it could be. I read many similar articles, but nothing really helped. It might ...
0
votes
1answer
32 views

How to tell if a UTF-8 file has asian characteres?

Question: Is there a simple way to discover if a given UTF file has or does not have not Asian characters? Would be great if that works with both UTF-8 and UTF-16. Better yet if done with ruby instead ...
1
vote
0answers
58 views

Get pry to display characters like [äöüßÄÖÜß] (utf-8 encoding)? (Possibly Windows-specific issue?)

[All the scripts I'm working with with these German characters are in UTF-8 themselves, have #encoding: utf-8 at the top (and Encoding.external_default = 'utf-8', not that that's really relevant I ...
1
vote
1answer
36 views

Error with utf8 encoding

When I get data from some website, sometime the data is encode in utf8 but look like this: Thỏ , Nạt The accent mark is seperated from character when in fact these string must be: Thỏ, Nạt I ...
1
vote
1answer
65 views

Ruby / Mongo - String not valid UTF-8 (BSON::InvalidStringEncoding)

I'm storing large objects which is a giant hash, with nested hashes, arrays, strings, etc. There is a very simaliar question to this here. Which gives the following monkey patch: class Hash def ...
0
votes
1answer
90 views

SublimeText2 RubyTest “Verify Ruby Syntax” triggers UTF-8 error

I am using rvm and ruby 1.9.3 on Mac OS 10.7.5. I'd like to be able to use Sublime Text 2 RubyTest package to verify my Ruby syntax. However, when I attempt to run Tools -> RubyTest -> Verify ...
0
votes
1answer
27 views

REXML and encoding

Can anyone please explain this result for me? #!/usr/bin/env ruby # encoding: utf-8 require 'rexml/document' doc = REXML::Document.new(DATA) puts "doc: #{doc.encoding}" REXML::XPath.each(doc, ...
1
vote
2answers
63 views

Invalid trailing UTF-8 octet when working with Gems

I am getting this error every time I try to run a Ruby command in Terminal. At this point, I can't even reinstall RVM. The error looks like this: /Users/ ...
1
vote
2answers
130 views

Ruby method to remove accents from UTF-8 international characters

I am trying to create a 'normalized' copy of a string, to help reduce duplicate names in a database. The names contain many international characters (ie. accented letters), and I want to create a copy ...
-1
votes
1answer
28 views

How to convert Haryāna to Haryana with Ruby

I am getting this value from an api and somehow it is sending some special unicode chars in the value. I would like to convert this into a normal ascii string.
0
votes
2answers
99 views

How to decode subject fetched via Net::IMAP which in UTF8? (ruby)

I'm using Net::IMAP.fetch to fetch some messages from Gmail. However, when I fetch a message which has a UTF8 subject (i.e., in cyrillic) I get something like this: ...
3
votes
3answers
164 views

ruby, `match': invalid byte sequence in UTF-8

I have some problem with UTF-8 conding. I have read some posts here but still it does not work properly somehow. That is my code: #!/bin/env ruby #encoding: utf-8 def determine ...
0
votes
1answer
40 views

identifying problematic row of data giving mass import error

I am using activerecord-import to bulk insert a bunch of data in a .csv file into my rails app. Unfortunately, I am getting an error when I call import on my model. ArgumentError (invalid byte ...
2
votes
3answers
72 views

Testing of graceful handling of invalid UTF-8 in Rails

I'm currently trying to ensure that my rails application handles POST methods with invalid UTF-8 data gracefully (e.g. \xFF) (using rack middleware) Unfortunately writing tests for this is proving ...
0
votes
1answer
135 views

String.encode() alternative in Ruby 1.8.7 for cleaning input to UTF-8

I just discovered that the String.encode method is only available from Ruby -v 1.9.3 and upwards. I'm working in a Rails environment were I cannot change this. I used this method to correct invalid ...
0
votes
1answer
190 views

How can I convert a String with \xf6 chars into a human readable one?

Currently I'm working on an Rails application with PayPal checkout. PayPal communicates with my app with IPN messages. In many cases everything works fine, but if someone uses special chars like ...
0
votes
2answers
158 views

Ruby 1.9.3 Regex utf8 \w accented characters

How ensure \w in Regexp treat national letters same as normal letters ? 'ein grüner Hund'.scan(/\S+/u) ["ein", "grüner", "Hund"] It scans correctly the "ü" as non whitespace character. 'ein ...
1
vote
3answers
179 views

Ruby 1.9.x replace sets of characters with specific cleaned up characters in a string

I'm looking for a way to do the following PHP code in Ruby in a succinct and efficient manner: $normalizeChars = array('Š'=>'S', 'š'=>'s', 'Ð'=>'Dj','Ž'=>'Z', 'ž'=>'z', 'À'=>'A', ...
0
votes
2answers
264 views

Convert unicode chars in ruby string which already encoded in UTF-8

I have a string values which is encoded in UTF-8. But also they may contain unicode chars. For ex; "\u0131".encoding => #<Encoding:UTF-8> "\u0131" is "ı". how can i convert all unicode ...
0
votes
2answers
174 views

Action Controller: incompatible character encodings: ASCII-8BIT and UTF-8?

I have a text file that has some ® (Registered Trade Mark) symbols in it. The file is in UTF-8. I'm trying to import this file and populate a MySQL database using Rails 3. The DB appears to be ...
2
votes
0answers
319 views

Incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string) on Heroku

I have a Rails application where I use regex-based rules to categorize transactions. In my seeds.rb, I create some categories and rules, then import transactions from a CSV file (also utf8-encoded) ...
2
votes
1answer
170 views

sequel never returns utf-8, just ascii-8bit

There is this mysql database I'm trying to connect to. DataMapper fetches everything nicely in UTF-8 but Sequel always returns strings in ASCII-8bit which produces errors with .to_json. I have tried ...
6
votes
1answer
202 views

ActionMailer HTML Encoding Hell - Special Chars Replaced With Garbage

I have UTF-8 string: Website • Facebook That is a bullet in the middle aka &bull; or 0xE2 0x80 0xA2 This value is correctly stored in the database and correctly displayed on screen using Rails 3 ...
0
votes
1answer
69 views

UTF-8 encoding for Ruby scripts

This is a follow-up to a question I asked yesterday. I'm trying to learn standalone Ruby scripting but I'm struggling with the whole char encoding issue that was introduced to Ruby 1.9 I believe. ...
0
votes
1answer
54 views

Multilingual text with rmagick

I'm using rmagick to annotate images programatically with text. The text will need to support a range of languages including Chinese, Korean, English among others. The font requirements I'm dealing ...
0
votes
1answer
240 views

incompatible character encodings: Windows-1252 and UTF-8

This is a strange bit, When I run localhost:3000 it prompts me with error listed below Encoding::CompatibilityError in Home#index incompatible character encodings: Windows-1252 and UTF-8 17: <%= ...
2
votes
3answers
114 views

What is the correct utf-8 encoding comment line for ruby? [duplicate]

Possible Duplicate: Ruby - UTF-8 file encoding I'm using UTF-8 all the way and want to help the ruby interpreter to read my files. Therefore I put # encoding=utf-8 at the start of my ruby ...
0
votes
2answers
207 views

Encoding::UndefinedConversionError from email body

using mail for ruby I am getting this message: mail.rb:22:in `encode': "\xC7" from ASCII-8BIT to UTF-8 (Encoding::UndefinedConversionError) from mail.rb:22:in `<main>' If I remove encode ...
1
vote
0answers
90 views

ubuntu and ruby, encoding issues [closed]

I have problems with Cyrillic letters in my ruby project. I use espresso framework and use carrierwave for file uploads. On my dev machine (MacBook Pro) and HTPC (Ubuntu server 12.04.1) everything ...
1
vote
1answer
167 views

ActionMailer string encoding

Been banging my head against this for a while. I have this string: [18] pry(main)> p.title => "Human meat – Wesker and Son butchers at Smithfield Market" [19] pry(main)> p.title.encoding ...
4
votes
1answer
145 views

How to remove invalid byte sequence?

I'm scraping html and running into "invalid byte sequence errors". I followed some advice in a another post and inserted the following two lines of code: doc_scores.encode!('UTF-16', :undef => ...
3
votes
2answers
2k views

Force strings to UTF-8 from any encoding

In my rails app I'm working with RSS feeds from all around the world, and some feeds have links that are not in UTF-8. The original feed links are out of my control, and in order to use them in other ...
0
votes
0answers
82 views

Cyrillic Characters in Ruby Shoes using edit_line element

I have a strange problem using shoes. I have attached a screenshot of a very simple GUI I am building for a Ruby Script that I hope to use to assist me in learning the Russian language. However I am ...
0
votes
1answer
204 views

Change UTF-8 spaces to RegEx-able spaces

I have the following code that parses an HTML document with Nokogiri: td.next_element.text.scan(/\A[^(]+/).first.gsub(/\s+/, " ").strip There is also a case statement with a regular expression that ...
1
vote
3answers
275 views

Ruby: Limiting a UTF-8 string by byte-length

This RabbitMQ page states: Queue names may be up to 255 bytes of UTF-8 characters. In ruby (1.9.3), how would I truncate a UTF-8 string by byte-count without breaking in the middle of a ...
1
vote
1answer
211 views

How to translate hex to utf-8

I want to translate a string in hex to utf-8, for example,"\\XB6\\XAB..." to "中国". I use "\x68\x65\x6c\x6c\x6f".unpack("Z*") → "hello" but it doesn't work.
0
votes
1answer
177 views

Ruby CSV UTF-8 Encoding/Translation Issues

I'm having problems with Ruby 1.9 CSV and invalid UTF-8 characters in my data. My code looks something like this: CSV.foreach("small-test2.csv", options) do |row | name, workgroup, address, ...
3
votes
1answer
157 views

Rails: CLEAN special characters from English or Arabic String

I want to clean special characters from English or Arabic Strings. For example, the "–" in the below example is a special character that displays a "?" when converted to UTF-8. File name: ...
1
vote
1answer
255 views

Rails 0mPG::Error: ERROR: invalid byte sequence for encoding “UTF8”: 0xeda0bc

I'm running into an error while trying to write to tweets to my psql database. I've searched the internet high and low (perhaps not well enough) for the answer, with no avail. I've looked at the ...
0
votes
0answers
302 views

ruby to_json utf8

I have a problem with returning json with utf8 chars.. this is my controller: class UserMessagesController < ApplicationController def get_users @search = params[:q] @users = ...
1
vote
1answer
1k views

Sinatra/Ruby - Internal Server Error: invalid byte sequence in US-ASCII. Caused by array with special characters

I am using Sinatra to build an app. The app runs just fine except for when I recently added an element to an array that has special characters (Yóü). @peeps = ["Joe", "James", "Phil", "Jane", "Yóü"] ...
0
votes
0answers
141 views

cucumber: incompatible character encodings: ASCII-8BIT and UTF-8 (Encoding::CompatibilityError)

I'm also having the same problem. ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux] cucumber (1.2.1) The error Within the directory Hello have: features/ greeter_spec.rb spec/ The file: ...
0
votes
1answer
232 views

Ruby equivalent to PHP's utf8_encode and utf8_decode functions [duplicate]

Possible Duplicate: How can I convert a string from windows-1252 to utf-8 in Ruby? How can i transform the utf8 chars to iso8859-1 So here's my problem. I have tools I've distributed ...
0
votes
1answer
216 views

Using Ruby to create ZIP archives containing UTF-8 encoded “files” without using the file system

Using zipruby it is beautifully easy to create a ZIP archive without writing to disk. One can take strings and add them as archive entries and finally get the entire archive as a string. I can then ...
0
votes
1answer
243 views

Encoding utf-8 string with MySQL and Rails 3 not working

yet another encoding problem with MySQL, UTF-8 and Rails 3 application. We recently migrated our code from Rails 2 to Rails 3. We use MySQL and the mysql2 gem. The thing is, in our old database we ...
2
votes
1answer
160 views

Ruby system() doesn't accept UTF-8?

I am using Ruby 1.9.3 in Windows and trying to perform an action where I write filenames to a file one per line (we'll call it a filelist) and then later read this filelist, and call system() to run ...
0
votes
1answer
182 views

ruby-1.9.3-p194/lib/ruby/1.9.1/csv.rb:1855:in `sub!': invalid byte sequence in UTF-8 (ArgumentError)

I'm not sure how to debug this... ruby-1.9.3-p194/lib/ruby/1.9.1/csv.rb:1855:in `sub!': invalid byte sequence in UTF-8 (ArgumentError) Any suggestions? Should I try to convert the file first?

1 2 3 4 5