From: "Jens Finnäs" Date: 2011-01-27T00:56:00+09:00 Subject: Issues with Time.parse Hi, I just started working my way around web scraping with Ruby and I just run in to some problems with Time.parse. I'm scraping a date from a website: collect_last_bid = last_bid_cell.scan(/\d{1,2}\.\d{1,2}\.\d{1,4}\b.\b\d{1,2}\:\d{1,2}:\d{1,2}/) ...which comes out nicely as "26.01.2011 21:00:08" However, when I Time.parse the variable: right_now = Time.parse(collect_last_bid) ...I get "Error in time.rb, Line 240 in 'parse'" Parsing the string with Time.parse("26.01.2011 21:00:08") works fine. Any thoughts? -- Posted via http://www.ruby-forum.com/.