使用 AWK/Grep/Bash 从 HTML 中提取数据 [英] Using AWK/Grep/Bash to extract data from HTML

查看:34
本文介绍了使用 AWK/Grep/Bash 从 HTML 中提取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个 Bash 脚本来从 HTML 页面中提取结果.我用Curl实现了获取页面的内容,但是下一步是解析输出,这是有问题的.

页面有趣的内容是这样的:

...<div class="item"><div class="item_title">ITEM 1</div>

...<div class="item_desc">项目 描述 1

...

<div class="result">...<div class="item"><div class="item_title">项目 2</div>

...<div class="item_desc">项目 描述 2

...

我想输出如下内容:

ITEM1;ITEM 描述 1项目 2;项目描述 2

我知道一点 Grep,但我无法决定让它在这里工作,也有人告诉我使用 Awk,它似乎最适合这种任务.

感谢您的帮助.

非常感谢.

解决方案

一个用于处理 HTML 的最小程序,松散地,没有验证,并且很容易被 HTML 的变化混淆,是:

sed.script

/*

(.*)

/{ s//1/;H;}/*

/,/

/{/

/d/

/ds/^ *//Gs/(.*) (.*)/2;1/p}

第一行匹配项目标题行.s/// 命令只捕获

之间的部分;h 将其复制到保持空间(内存)中.

脚本的其余部分匹配项目描述

和它的

之间的行.前两行删除(忽略)

行.s/// 删除前导空格;G 在换行符之后将保持空间附加到模式空间;s///p 捕获换行符之前的部分(描述)和换行符之后的部分(来自保持空间的标题),并用标题和描述替换它们,用一个分隔符分隔分号,并打印结果.

示例

$ sed -n -f sed.script items.html第 1 项;第 1 项说明第 2 项;第 2 项说明$

注意-n;这意味着除非被告知,否则不要打印".

您可以在没有脚本文件的情况下执行此操作,但如果您使用脚本文件,则无需担心.如果你小心的话,你甚至可以把它全部挤在一条线上.请注意,h 之后的 ; 对于 BSD sed 来说是必要的,对于 GNU sed 来说是无害的,但不是至关重要的.

修改

有各种各样的方法可以使它更接近防弹(但它们是否值得值得商榷).例如:

/*

(.*)

/

可以修改为:

/^[[:space:]]*

[[:space:]]*(.*)[[:space:]]*

[[:space:]]*$/

处理

组件之前、中间和之后的任意空白序列.对其他正则表达式重复令人作呕的事情.您可以安排单词之间有一个空格.您可以将多行描述安排为一行打印一次,而不是像现在这样单独打印每个线段.

您也可以将整个结构包装在里面的文件中:

/^

$/,/^

$/{…脚本和以前一样…}

您可以重复这个想法,以便仅在 <div class="item"></div> 等中选取项目标题.

I'm trying to make a Bash script to extract results from an HTML page. I achieved to get the content of the page with Curl, but the next step is parsing the output, which is problematic.

The interesting content of the page looks like this:

<div class="result">
    ...
                <div class="item">
                    <div class="item_title">ITEM 1</div>
                </div>
                ...                                 
                <div class="item_desc">
                    ITEM DESCRIPTION 1
                </div>
...              
</div>
<div class="result">
    ...
                <div class="item">
                    <div class="item_title">ITEM 2</div>
                </div>
                ...                                 
                <div class="item_desc">
                    ITEM DESCRIPTION 2
                </div>
    ...              
</div>

I'd like to output something like:

ITEM1;ITEM DESCRIPTION 1
ITEM2;ITEM DESCRIPTION 2

I know a bit of Grep, but I can't wrap my mind about making it to work here, also some people told me to use Awk, which seems best suited for this kind of task.

I'd appreciate any help.

Thank you very much.

解决方案

A bare minimal program to handle the HTML, loosely, with no validation, and easily confused by variations in the HTML, is:

sed.script

/ *<div class="item_title">(.*)</div>/ { s//1/; h; }
/ *<div class="item_desc">/,/</div>/ {
    /<div class="item_desc">/d
    /</div>/d
    s/^  *//
    G
    s/(.*)
(.*)/2;1/p
}

The first line matches item title lines. The s/// command captures just the part between the <div …> and </div>; the h copies that into the hold space (memory).

The rest of the script matches lines between the item description <div> and its </div>. The first two lines delete (ignore) the <div> and </div> lines. The s/// removes leading spaces; the G appends the hold space to the pattern space after a newline; the s///p captures the part before the newline (the description) and the part after the newline (the title from the hold space), and replaces them with the title and description, separated by a semi-colon, and prints the result.

Example

$ sed -n -f sed.script items.html
ITEM 1;ITEM DESCRIPTION 1
ITEM 2;ITEM DESCRIPTION 2
$

Note the -n; that means "don't print unless told to do so".

You can do it without a script file, but there's less to worry about if you use one. You can probably even squeeze it all onto one line if you're careful. Beware that the ; after the h is necessary with BSD sed and harmless but not crucial with GNU sed.

Modification

There are all sorts of ways to make it more nearly bullet-proof (but it is debatable whether they're worthwhile). For example:

/ *<div class="item_title">(.*)</div>/

could be revised to:

/^[[:space:]]*<div class="item_title">[[:space:]]*(.*)[[:space:]]*</div>[[:space:]]*$/

to deal with arbitrary sequences of white space before, in the middle, and after the <div> components. Repeat ad nauseam for the other regexes. You could arrange to have single spaces between words. You could arrange for a multi-line description to be printed just once as a single line, rather than each line segment being printed separately as it would be now.

You could also wrap the whole construct in the file inside:

/^<div class="result">$/,/^</div>$/ {
    …script as before…
}

And you could repeat that idea so that the item title is only picked inside <div class="item"> and </div>, etc.

这篇关于使用 AWK/Grep/Bash 从 HTML 中提取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
其他开发最新文章
热门教程
热门工具
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆