.+|, 1)
end
end
end
end
=end
#url = 'http://mukar.com/test.cgi?cont=日本語テスト ホゲホゲ'
#url_escape = URI.escape(url)
#puts url_escape
#=> http://mukar.com/test.cgi?cont=%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%83%86%E3%82%B9%E3%83%88%20%E3%83%9B%E3%82%B2%E3%83%9B%E3%82%B2
#puts URI.unescape(url_escape)
#=>http://mukar.com/test.cgi?cont=日本語テスト ホゲホゲ
#
# ↑こいつ最高にアホ!はわわわ アイコンをアバターとしたチャット。ともだちられシステムは..
target_date = []
text.each_line do |html|
html.gsub(/
/, "\n
").each_line do |line|
target_date << line.slice(%r|href="(/2\d+)">(.+).+(.+) .+(.+)|, 2) if line =~ %r|href="/2\d+">.+ | #エントリーが2種類に別れる。仕様の詳細は不明
end
end
target_date.each do |d|
puts URI.unescape(d)
end
#pp target_date