J
Jens Finnäs
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?
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?