#!/usr/local/bin/ruby
#test.rb
require 'open-uri'
require "pp"
area = ["https://anond.hatelabo.jp/archive/200609"]
target_url = []
text = <<"EOS"
2006年09月の人気記事 - はてな匿名ダイアリー はてな匿名ダイアリー > 人気記事アーカイブ > 2006年09月
2006年09月の人気記事 ようこそ ゲスト さん
EOS
text2 = <<"EOS"
2006年09月の人気記事 - はてな匿名ダイアリー はてな匿名ダイアリー > 人気記事アーカイブ > 2006年09月
2006年09月の人気記事 ようこそ ゲスト さん
EOS
#s = "hello,\nworld\r\n"
#puts s.gsub(/(\r\n|\r|\n)/, " ")
#text3 = text.gsub(//, "\n ")
target_date = []
urls = ["https://anond.hatelabo.jp/archive/200609"]
urls.each do |url|
OpenURI.open_uri(url).each_line do |text|
text3 = text.gsub(/ /, "\n ")
text3.each_line do |t|
if t =~ %r| .+ |
target_date << t.slice(%r|.+ |, 1)
# target_date << "#{t_date}"
end
end
end
target_date.each do |u|
puts u
end
=begin
target_url = []
#area.each do |l|
# OpenURI.open_uri(l).each_line do |t|
text3.each_line do |t|
# puts t
if t =~ %r|.+ |
t_date = t.slice(%r|.+ |, 1)
target_url << "#{t_date}"
end
end
#end
target_url.each do |u|
puts u
end
=end
=begin
target_url = []
text.each do |t|
if t =~ %r|.+ |
t_date = t.slice(%r|.+ |, 1)
target_url << "https://www.chintai.net#{t_date}"
end
end
target_url.each do |u|
puts u
end
=end