Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have rows of hashes imported from several different XML database dumps that look like this (but with varying keys):

{"Id"=>"1", "Name"=>"Cat", "Description"=>"Feline", "Count"=>"123"}

I tried using #to_i but it converts a non-number string to 0:

"Feline".to_i
# => 0

But what I'd like is a way for "Feline" to remain a string, while Id and Count in the above example become integers 1 and 123.

Is there an easy way to convert only the strings values that are numbers into integers?

share|improve this question

6 Answers

up vote 5 down vote accepted

use Kernel#Integer:

my_hash = {"Id"=>"1", "Name"=>"Cat", "Description"=>"Feline", "Count"=>"123"}
Hash[ my_hash.map{ |a, b| [ a,
                            begin
                              Integer b
                            rescue ArgumentError
                              b
                            end ] } ]
share|improve this answer
This should be the answer. – Sergio Tulentsev Sep 7 '12 at 12:33
+1 for Integer() but the code is ... not nice. – undur_gongor Sep 7 '12 at 12:34
That intrigues me. Can you be more specific? – Boris Stitnicky Sep 7 '12 at 12:35
+1. Nice, thanks Boris. I like Brad's regex & ternary, though this is faster. – dj. Sep 7 '12 at 12:36
5  
Proposal: my_hash.each_pair { | k, v | my_hash[k] = Integer(v) rescue v } – undur_gongor Sep 7 '12 at 12:37
show 6 more comments

One line answer: Using regex approach

h.merge(h) { |k, v| v.match(/\A[+-]?\d+?(\.\d+)?\Z/) ? v.to_i : v }

Using Integer approach

h.merge(h) { |k, v| Integer(v) rescue v }
share|improve this answer
Oops, my bad, sorry – Sergio Tulentsev Sep 7 '12 at 12:43
@SergioTulentsev no problem, any improvement would be accepted :) – waldyr.ar Sep 7 '12 at 12:44
In my private library, I actually defined #do_with_values method on Hashes, so in my code, I'd just say h.do_with_values { |v| Integer v rescue v }. – Boris Stitnicky Sep 7 '12 at 12:46
@BorisStitnicky I think your answer is enough and sufficient. Mine is just complement :) – waldyr.ar Sep 7 '12 at 12:48

I think you know what fields should be integers (your consuming code probably depends on it), so I would recommend you convert the specific fields.

c = Hash[h.map { |k,v| [k, %w(Id Count).include?(k) ? Integer(v) : v ] }]
share|improve this answer
True, though I'm also lazy and a fan of data-driven logic, so that I can replicate the algorithm on other xml without having to worry about matching field names to data types. Mapping fields to data types hard-codes the schema in my algorithm which I want to avoid, and also introduces further points of error and fat fingers. DNRY. – dj. Sep 7 '12 at 12:54

Using a regex and the ternary operator, you could incorporate this into the logic somewhere:

string =~ /^\d+$/ ? string.to_i : string
share|improve this answer
While I think Boris' answer is more pure, I have a soft spot for regex and the ternary operator. I suspect Boris' begin/rescue would be faster though... – dj. Sep 7 '12 at 12:34
2  
“Some people, when confronted with a problem, think ‘I know, I'll use regular expressions.’ Now they have two problems.” (Jamie Zawinski) What about "-42"? Your approach will convert "abcd\n2\nefgh" to 0. Why not use Integer() which exists exactly for the given problem? – undur_gongor Sep 7 '12 at 12:41

This will handle not only integers but all numbers.

my_hash = {"Id"=>"1", "Name"=>"Cat", "Description"=>"Feline", "Count"=>"123"}

result = my_hash.inject({}) { |result,(key,value)|
    if value.match(/^\s*[+-]?((\d+_?)*\d+(\.(\d+_?)*\d+)?|\.(\d+_?)*\d+)(\s*|([eE][+-]?(\d+_?)*\d+)\s*)$/)
            result[key.to_sym] = value.to_i
    else
            result[key.to_sym] = value
    end
    result
}

Thanks to Determine if a string is a valid float value for regexp

share|improve this answer
Uh oh, inject, a venerable keyword :). Where did you spork it? – Boris Stitnicky Sep 7 '12 at 12:43
2  
Now, that's an overkill :) Unless you are paid by LOCs :) – Sergio Tulentsev Sep 7 '12 at 12:44
1  
Your regexp fails for multi-line strings. my_hash = {"Id"=>"1", "Name"=>"Cat", "Description"=>"Feline\n42", "Count"=>"123"} results in {:Id=>1, :Name=>"Cat", :Description=>0, :Count=>123}. – undur_gongor Sep 7 '12 at 13:07

Define a new method for String: String#to_number

class String
  def to_number
    Integer(self) rescue Float(self) rescue self
  end
end

Test it:

"1".to_number => 1
"Cat".to_number => "Cat"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.