天软金融分析.NET函数大全
>
TSL函数
>
基础函数
>
数组
>
集合运算
MergeArray
复制链接
简述
多个数组进行合并
定义
MergeArray(V1:Array[;V2:Array;….]):Array
参数
名称
类型
说明
返回
Array
多个数组的合并
范例
t1:=array(('b':12,'a':1,'c':13,'d':'d'));
t2:=array(('a':2,'b':22,'c':23,'e':'ee'));
t3:=array(('a':2,'b':22,'d':23,'e':'ee'));
return MergeArray(t1,t2,t3); //将数组t1,t2,t3合并
结果:
相关
MergeArray
Frameconcat
FilterIntersectionPart
FilterIntersectionPart2
IntersectionPart
QuickIntersectionPart
DistinctStr