J
Jack
Hello, I have a little problem. i am trying to extract some text from
a file. I need to get the first names and last names as well as the
data between the <TD> tags which corresponds to Current Status. For
example:
<h1>Mr. firstname lastname</h1>
<th class="profile"><nobr>Current Status</nobr></th><td
class="profile" colspan="2">Some data</td>
so i need firstname lastname as well as some data. my current string
looks like this but it doesn't work.
if (@content =~ m/<h1>Mr.*<\/h1>/){
print "here " . $1;
}
Please help....
a file. I need to get the first names and last names as well as the
data between the <TD> tags which corresponds to Current Status. For
example:
<h1>Mr. firstname lastname</h1>
<th class="profile"><nobr>Current Status</nobr></th><td
class="profile" colspan="2">Some data</td>
so i need firstname lastname as well as some data. my current string
looks like this but it doesn't work.
if (@content =~ m/<h1>Mr.*<\/h1>/){
print "here " . $1;
}
Please help....