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.

Could someone tell me how to parse this string

From: Dela(deal@gmail.com) To: Roger(perter@gmail.com) Date: Monday, Oct 11 Subject: about emma

and store it into a hash like:

{:from=> "Dela(deal@gmail.com)", :to=>"Roger(perter@gmail.com)", :date=>"Monday, Oct 11", :subject=>"about emma"}
share|improve this question

1 Answer

up vote 6 down vote accepted

str = "From: Dela(deal@gmail.com) To: Roger(perter@gmail.com) Date: Monday, Oct 11 Subject: about emma"

Hash[str.scan(/([a-zA-Z]+):\s+(.*?)(?=\z|[a-zA-Z]+:)/).map{|k, v| [k.downcase.to_sym, v]}]

share|improve this answer
Nice one liner! – Tom L Feb 16 '12 at 3:10

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.