雅虎管道 - 有什么方法可以组合项目吗?

发布于 2024-07-09 04:15:14 字数 354 浏览 11 评论 0原文

我正在处理管道,但在组合两个项目列表时遇到问题。

List 1:
[0] letter - a
[1] letter - b
[2] letter - c

List 2:
[1] word - apple
[2] word - banana
[3] word - cake

我想要发出以下内容的东西:

List 3:
[1] letter - a
    word - apple
[2] letter - b
    word - banana
[3] letter - c
    word - cake

我一生都无法弄清楚如何执行这个简单的操作。

I'm working on a pipe and am having trouble with combining two lists of items.

List 1:
[0] letter - a
[1] letter - b
[2] letter - c

List 2:
[1] word - apple
[2] word - banana
[3] word - cake

I'd like something which emits the following:

List 3:
[1] letter - a
    word - apple
[2] letter - b
    word - banana
[3] letter - c
    word - cake

I can't figure out for the life of me how to do this simple operation.

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

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

发布评论

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

评论(1

甜尕妞 2024-07-16 04:15:14

您所要求的内容在 Yahoo Pipes 中是冗长且复杂的。 如果您仍然想解决这个问题,这是我的解决方案:

在本例中,列表 1 是雅虎搜索“苹果”,列表 2 是雅虎搜索“橙子”。

  1. 主管道以数字列表开头。 该列表被削减为列表 1 的长度。
  2. 然后对于每个数字 n,n-列表 1 的第一项附加到编号的项目上。
  3. 然后对于每个数字 n,附加列表 2 的第 n 项到编号的项目。

完成的。

您可能想稍微清理一下。 添加适当的标题,删除数字值等。

注意:

  1. 我使用了 alto maltés' 的数字列表。 它不是 Yahoo Pipes 的一部分,因此它可能会停止工作。
  2. 我使用了两个第n项管道。 也许这可以简化。
  3. 如果列表 2 比列表 1 短,则使用列表 2 的最后一个元素。 如有必要,这应该很容易更改。

What you ask is verbose and complicated to do in Yahoo Pipes. If you still want to go through the trouble, here's my solution:

In this example, List 1 is a Yahoo search for "apples" and List 2 a Yahoo search for "oranges".

  1. The main pipe starts with a list of numbers. This list is cut to the length of List 1.
  2. Then for each number n, the n-th item of List 1 is attached to the numbered item.
  3. Then for each number n, the n-th item of List 2 is attached to the numbered item.

Finished.

You probably want to clean things up a bit. Add a proper title, remove the number value, etc.

Notes:

  1. I used alto maltés' list of numbers. It's not a part of Yahoo Pipes, so it might stop working.
  2. I used two n-th item pipes. Maybe this can be simplified.
  3. If List 2 is shorter than List 1, the last element of List 2 is used. This should be easy to change if necessary.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文