Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

iam new to ruby.i want to remove non numeric characters from phone number parsed from a CSV file. Here is the code iam using.

require 'csv' 
csv_text = File.read('file.csv')
csv = CSV.parse(csv_text, :headers => true)
csv.each do |row|                                      
    puts "First Name: #{row['Name']} - HomePhone: #{row['Phone']} -  Zip Code: #{row['Zipcode']}"
end

the out put print as Follows

   FirstName:Abiel HomePhone:6667-88-76 

(In CSV file HomePhone contains non numeric characters.) I want the out put as FirstName:Abiel HomePhone:66678876

share|improve this question

2 Answers

up vote 2 down vote accepted

This should work:

row['Phone'].gsub(/[^0-9]/, "")
share|improve this answer

Yes, or just row['Phone'].gsub(/\D/, "")

where \d means a numeric char, and \D means anything non-numeric.

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.