我在文件中有这样的语法(来自模拟的http响应时间):
<thead><tr><th class="x">seconds</th><th class="R">reqs</th><th class="r">%reqs</th><th class="B">Gbytes</th><th class="b">%bytes</th></tr></thead>
<tbody><tr><td class="x">0</td><td class="R">10927</td><td class="r"> 0.47%</td><td class="B">0.01</td><td class="b"> 0.18%</td></tr>
<tr><td class="x"><= 0.01</td><td class="R">1026471</td><td class="r">44.59%</td><td class="B">0.11</td><td class="b"> 1.81%</td></tr>
<tr><td class="x">0.01-0.02</td><td class="R">535390</td><td class="r">23.26%</td><td class="B">0.06</td><td class="b"> 0.95%</td></tr>
<tr><td class="x">0.02-0.05</td><td class="R">93298</td><td class="r"> 4.05%</td><td class="B">0.27</td><td class="b"> 4.29%</td></tr>
ETC。
我想要留下的是秒的值 - 所以“x”之后和第一个 < 之前有 2 个字符
还有请求长度,因此“R”之后和下一个 < 之前有 2 个字符
可能不是掌握正则表达式的最佳练习,但这就是我所坚持的。任何帮助都会非常有用。
预期结果:
seconds reqs
0 10927
<= 0.01 1026471
0.01-0.02 535390
0.02-0.05 93298
答案1
除非您非常确定 HTML 的格式,否则您可以控制它,它对错误并不重要,等等。您可以使用正则表达式, - 但如上所述 - 不推荐。
我自己经常使用它,但通常是一次性提取一些简单的数据。
你可以使用例如PerlHTML::TokeParser::简单。
非常简化:
#!/usr/bin/perl
use strict;
use warnings;
use HTML::TokeParser::Simple;
use HTML::Entities;
use utf8;
die "$0 [file | url]\n" unless defined $ARGV[0];
my $tp;
if ($ARGV[0] =~ /^http:\/\//) {
$tp = HTML::TokeParser::Simple->new(url => $ARGV[0]);
} else {
$tp = HTML::TokeParser::Simple->new(file => $ARGV[0]);
}
if (!$tp) {
die "No HTML file found.\n";
}
# Array to store data.
my @val;
# Index
my $i = 0;
# A bit mixed code with some redundancy.
# Could be done much simpler, - or much more safe.
# E.g. Check for thead, tbody etc and call a sub to parse those.
# You could off course also print directly (not save to array),
# but you might want to use the data for something?
while (my $token = $tp->get_token) {
if ($token->is_start_tag('th') && $token->get_attr('class') eq 'x') {
$val[$i++] = $tp->get_token->as_is;
} elsif ($token->is_start_tag('th') && $token->get_attr('class') eq 'R') {
$val[$i++] = $tp->get_token->as_is;
} elsif ($token->is_start_tag('td') && (
($token->get_attr('class') eq 'x') ||
($token->get_attr('class') eq 'R'))) {
$val[$i++] = decode_entities($tp->get_token->as_is);
}
}
my @width_col = (10, 8);
if ($i > 2 && !($i % 2)) {
$i = 0;
printf("%*s %*s\n",
$width_col[0], "$val[$i++]",
$width_col[1], "$val[$i++]"
);
while ($i < $#val) {
printf("%*s %*d\n",
$width_col[0], "$val[$i++]",
$width_col[1], "$val[$i++]"
);
}
} else {
die "ERR. Unable to extract data.\n"
}
结果示例:
$ ./extract htmlsample
seconds reqs
0 10927
<= 0.01 1026471
0.01-0.02 535390
0.02-0.05 93298
答案2
正如已经提到的正则表达式不适合解析 html。与另一个类似解析答案您可以制作如下所示的 Ruby 语句来为您完成此操作。请注意,它需要野科切您可以将其安装为 gem ( sudo gem install nokogiri
)。
ruby -rnokogiri -e 'h = Nokogiri::HTML(readlines.join); h.css("tr .x").zip(h.css("tr .R")).each { |d| puts "#{d[0].content} #{d[1].content}" }' sample.html
它从sample.html 中读取并创建一个二维数组,其中包含元素class="x"
内具有该属性的所有内容,并与元素内tr
具有该属性的所有内容配对。然后它每行打印一对。对于您的示例,输出如下:class="R"
tr
seconds reqs
0 10927
<= 0.01 1026471
0.01-0.02 535390
0.02-0.05 93298
答案3
这使用sed
然后你可以使用cut
来获取你想要的字段。这是一句单行话,但为了清晰起见,我将其编写为带有注释的脚本文件。
#!/bin/sed -f
s!</*thead!<tbody!g; # to not get caught by 'th' below
s!<t[dh][^>]*>!%%%!g; # replace start tag 'td' or 'th' with a delimitor
s!</t[dh]>!@@@!g; # replace end tag 'td' or 'th' with a delimitor
s/<[^>]*>//g; # delete any other tags
s/%%%\([^@]*\)@@@/\1 /g; # get text between start and stop delimitors with a space
s/ $// # remove trailing space
将此称为:
$ sed -f glean.sed test.html
seconds reqs %reqs Gbytes %bytes
0 10927 0.47% 0.01 0.18%
<= 0.01 1026471 44.59% 0.11 1.81%
0.01-0.02 535390 23.26% 0.06 0.95%
0.02-0.05 93298 4.05% 0.27 4.29%
然后您可以使用您喜欢的内容来获取前两个字段(正如我建议的那样cut
)。