We are trying to concatenate two arrays, tried the concat, append to list w\\MNI

We are trying to concatenate two arrays, tried the concat, append to list w\\MNI, joinarray without success....is there an easy function to turn two lists {a,b,c} and {1,2,3} into {a1,b2,c3}? The arrays are multiples within CDT's and we're combining a text array with an integer array. Our concat & append to list arrays show results like {a123, b, ....}.....thanks for suggestions....

OriginalPostID-64631

OriginalPostID-64631

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    Have a rule to append elements - the inputs will be of the type you want and single. Let this rule have the two inputs - element1 and element2 and the rule definition would be - element1&element2

    Now have a second rule, where you pass your array inputs. Your second rule will look something like apply(rule!Rule1, merge(arrayInput1, arrayInput2)
Reply
  • 0
    Certified Lead Developer
    Have a rule to append elements - the inputs will be of the type you want and single. Let this rule have the two inputs - element1 and element2 and the rule definition would be - element1&element2

    Now have a second rule, where you pass your array inputs. Your second rule will look something like apply(rule!Rule1, merge(arrayInput1, arrayInput2)
Children