如何将列表中的两个项目合并为一个?
假设我有以下列表:
A |乙| C | D
或 |温度|是 | 100 | 100 °F |今天
我想将两个属性合并为一个,如下所示:
A |公元前 | D
或 |温度|是 | 100°F |今天
我怎样才能实现这个目标?如果需要,可以更改集合。
Supposing I have the following list:
A | B | C | D
or the | temperature | is | 100 | °F | today
I want to merge two attributes into one, something like this:
A | BC | D
or the | temperature | is | 100°F | today
How can I achieve this? The Collection can be changed, if needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要做的是获取一个元素及其后继者并将它们合并,那么这应该可行:
if what your trying to do is take an element and its successor and merge them, this should work:
我很惊讶没有标准的 API 方法可以做到这一点。哦,好吧,这是我自制的解决方案:
I was surprised there was no standard API method to do this. Oh well, here's my home-brewed solution:
没有直接的 API 可以实现这一点。但下面的内容可以帮助您开始
There is no direct api for this. But the below can get you started