我正在解析一个具有以下内容的输入文件。
<tr>
<th width="50%">ABC</th><th width="50%">XYZ</th>
</tr>
<tr>
<tr>
<td>avc</td>
<td>fds</td>
</tr>
代码:
#!/usr/bin/perl
open(fh,$ARGV[0]) or die "could not open a file\n";
$input=<fh>
#print($input)
if($input =~ /<tr>(\n)?(.*)(\n)?tr>/)
{
print($1);
}
但是没有输出。如何获得具有 th 标签的中间线?