获取 Websphere TX 中具有不同根项的 2 个系列的并集

发布于 2024-08-27 03:16:49 字数 369 浏览 4 评论 0原文

这是我的问题的示例。我有以下类型树:

Root
 |-Text(item)
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[1:s])

我有 3 张卡:

serie1 (type=Texts), rule =clone("test", 3)
serie2 (type=Texts), rule =clone("test", 3) 
union (type=Texts), rule =? 

如何使联合包含 serie1 和 serie2 的值?

如果可能,不使用 RUN

Here is a sample of my problem. I have the following typetree :

Root
 |-Text(item)
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[1:s])

I have 3 cards :

serie1 (type=Texts), rule =clone("test", 3)
serie2 (type=Texts), rule =clone("test", 3) 
union (type=Texts), rule =? 

How can I get the union to contain both the values from serie1 and serie2 ?

If possible not using a RUN

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

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

发布评论

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

评论(1

天赋异禀 2024-09-03 03:16:49

一种可能的解决方案是像这样修改类型树:

Root
 |-Text(item)
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[1:s])
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[0:s])

这样您可以直接将数据复制到输出,并且读取具有该类型树的文件也不会有问题。

问候,
B.

One possible solution is to modify your type tree like this:

Root
 |-Text(item)
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[1:s])
 |-Texts(group, delimited, literal separator=<NEXT>, components=Text[0:s])

This way you can copy directly the data to the output and you should not have problems reading a file with that type tree either.

Regards,
B.

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