Regex to parse a multiline HTML
Posted
by
dreamer
on Stack Overflow
See other posts from Stack Overflow
or by dreamer
Published on 2012-11-06T10:49:10Z
Indexed on
2012/11/06
11:00 UTC
Read the original article
Hit count: 434
am trying to parse a multi-line html file using regex.
HTML code:
< td>Details< /td> < /tr>
< tr class=d1>
< td>uss_vod_translator< /td>
Regex Expression:
if ($line =~ m/Details<\/td>\s*<\/tr>\s*<tr\s*class=d1>\s*<td>(\w*)<\/td>/)
{
print "$1";
}
I am using /s* (space) for multi-line, but it is not working.
I searched about it, even used /\? for multi-line but that too did not work.
Can any one please suggest me how to parse a multiline HTML?
© Stack Overflow or respective owner