[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

cannot I search the doc's contents (doc=file.read) one more times?

shaobo.li

1/11/2005 9:19:00 AM

Hi,
I wanna retrive ip and its port from the html file which contains
"<tr bgcolor=#e3e6ea><td>61.135.158.111</td>
<td>80</td>",cannot I search the doc's contents (doc=file.read) one
more times?

doc=file.read

#first get ip'es success
ips=doc.scan(/(\d{1,3}[.]\d{1,3}[.]\d{1,3}[.]\d{1,3})/)
ips.each {|ip| puts ip }

#then get ports still on doc ,but no one got nothing,if commentted
above ip scans ,this would works.
ports=doc.scan(/<td>(\d+)<\/td>/)
ports.each {|port| puts port }

file.close

Thanks in advance!