我正在尝试使用 perl、XML::DOM 和 XML::Parser 从 RSS 提要中获取 som 信息。我很难获得有关 XML::DOM 和 XML::Parser 的 som 文档 :(
这是 RSS 提要支出。
<rss version="2.0">
<channel>
<item>
<title>The title numer 1</title>
<link>
http://www.example.com/link1.php?getfile=1&sha=1234567890
</link>
<description>
File 1
</description>
</item>
<item>
<title>The title numer 2</title>
<link>
http://www.example.com/link1.php?getfile=2&sha=0192837465
</link>
<description>
File 2
</description>
</item>
<item>
<title>The title numer 3</title>
<link>
http://www.example.com/link1.php?getfile=1&sha=0987654321
</link>
<description>
File 3
</description>
</item>
</channel>
所以我试图从这个 rss 提要中获取“标题”和“链接”。
我不能使用 XML::LibXML 或 XML::simple 或 XML::RSS