只返回瘦身版的feed

发布于 2024-10-19 12:00:59 字数 1184 浏览 3 评论 0原文

我正在尝试创建一个新的 yahoo 管道,它只会返回 xml 的精简版本。

假设我原来的 XML 看起来像:

<?xml version="1.0" encoding="UTF-8" ?>
<name>Joe bloggs</name>
<age>31</age>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse aliquam metus id eros blandit vel convallis nunc accumsan. Fusce adipiscing eros a enim feugiat vestibulum. Cras vulputate malesuada neque vel ultricies. Nunc commodo condimentum risus, eu interdum odio rutrum ut. Nullam nec neque eget dolor tristique dignissim sit amet non nibh. Donec sagittis, elit eget tempus laoreet, tellus eros gravida nunc, eu elementum sem turpis eget velit. In hac habitasse platea dictumst. Donec sed nibh nec arcu feugiat malesuada nec sollicitudin neque. Morbi egestas gravida blandit. Praesent luctus ipsum sed sem porta a tempus ipsum congue. Cras non lectus metus. Fusce non purus quam, vel convallis urna. Aenean dignissim consequat tincidunt. Nunc posuere pulvinar est, id pretium sem vestibulum non</description>.

我正在尝试创建一个 yahoo 管道来更改标签名称,其中我使用了重命名模块,并且它工作正常。

现在,我想去掉描述标签,所以我的 XML 只返回姓名和年龄。

我怎样才能用雅虎管道做到这一点?

提前为任何帮助干杯

I'm trying to create a new yahoo pipe that will only returned a slimmed down version of an xml.

Say my original XML looks like:

<?xml version="1.0" encoding="UTF-8" ?>
<name>Joe bloggs</name>
<age>31</age>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse aliquam metus id eros blandit vel convallis nunc accumsan. Fusce adipiscing eros a enim feugiat vestibulum. Cras vulputate malesuada neque vel ultricies. Nunc commodo condimentum risus, eu interdum odio rutrum ut. Nullam nec neque eget dolor tristique dignissim sit amet non nibh. Donec sagittis, elit eget tempus laoreet, tellus eros gravida nunc, eu elementum sem turpis eget velit. In hac habitasse platea dictumst. Donec sed nibh nec arcu feugiat malesuada nec sollicitudin neque. Morbi egestas gravida blandit. Praesent luctus ipsum sed sem porta a tempus ipsum congue. Cras non lectus metus. Fusce non purus quam, vel convallis urna. Aenean dignissim consequat tincidunt. Nunc posuere pulvinar est, id pretium sem vestibulum non</description>.

I'm trying to create a yahoo pipe that will change the tag names, in which I'm using the rename module, and it works fine.

Now, I'm wanting to get rid of the description tag, so my XML only returns name and age.

How can I do that with yahoo pipes?

Cheers in advance for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半世蒼涼 2024-10-26 12:00:59

在描述字段上使用正则表达式模块,并将 .* 替换为空文本字段。这会删除该字段。

Use the Regex module on the description field and replace .* with an empty textfield. That deletes the field.

戏舞 2024-10-26 12:00:59

使用“创建 RSS”模块作为链中的最后一步。然后只包含您想要的字段。

Use the "Create RSS" module as the last step in the chain. Then only include the fields you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文