Skip to main content
shukurs0001
June 22, 2022
Question

Lists

  • June 22, 2022
  • 2 replies
  • 0 views

Input:
List 1 { a,b,c}
List 2 {1,2,3}

output: {a1,b2,c3}

How can make them, could you please suggest me?

2 replies

stefanhelzle0001
Brainy
June 22, 2022

Do a foreach on the first list and use fv!index to fetch the value from the second list. Use concat() to create the required string.

June 22, 2022

Straight forward answer

list1 and list2 should be of same length