获取 Websphere TX 中具有不同根项的 2 个系列的并集
这是我的问题的示例。我有以下类型树:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能的解决方案是像这样修改类型树:
这样您可以直接将数据复制到输出,并且读取具有该类型树的文件也不会有问题。
问候,
B.
One possible solution is to modify your type tree like this:
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.