using regular expressions...

S

soldier.coder

I have the following code:

require 'open-uri'
def scrape_table(html)
%r{</thead.*?>(.*?)</table>}m =~html
$1
end

def scrape_case(a_line)
%r{(<a\s.*?\d{6}-\d{2}'>\d{6}-\d{2}<\/a>)}m =~ a_line
$1
end

if $0 == __FILE__

url = 'http://localhost:8080/tests/raw.html';
page = open(url) #open the url like a file
text = page.read; #read it into one string
my_table = scrape_table(text) #grab or "scrape" the table
my_link = scrape_case(my_table) #grab a html that includes a 6-2
digit number (ex: 080910-15)
puts(my_table) #prints out my_table -- which contains the table
information
puts("\n")
puts(my_link)

end

The code grabs the one table contained in my URL then looks for an
HTML link that includes a number that is 6 digits, followed by a dash,
followed by 6 digits. I'm fairly certain the regex in scrape_case( )
grabs more than one html link, if more than one is in the table. Is
there any way I can grab all those links into an array?
 
P

Peter Szinek

I have the following code:

require 'open-uri'
def scrape_table(html)
%r{</thead.*?>(.*?)</table>}m =~html
$1
end

def scrape_case(a_line)
%r{(<a\s.*?\d{6}-\d{2}'>\d{6}-\d{2}<\/a>)}m =~ a_line
$1
end
Is there any way I can grab all those links into an array?

Sure - String#scan is your friend:

def scrape_case(a_line)
a_line.scan(/<a\s.*?\d{6}-\d{2}'>\d{6}-\d{2}<\/a>/)
end

ex:
href='111111-99'>111111-99</a>".scan(/<a\s.*?\d{6}-\d{2}'>\d{6}-\d{2}<
\/a>/)
=> ["<a href='123456-78'>123456-78</a>", "<a
href='111111-99'>111111-99</a>"]


HTH,
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,070
Latest member
BiogenixGummies

Latest Threads

Top