假设我有两个数组,其中:
a[i] = "space separated string"
b[i] = "22"
我想制作第三个数组,以便:
c[i]= "${a[i]} ${b[i]}} #appending two string with space between them.
没有循环可以吗?
假设我有两个数组,其中:
a[i] = "space separated string"
b[i] = "22"
我想制作第三个数组,以便:
c[i]= "${a[i]} ${b[i]}} #appending two string with space between them.
没有循环可以吗?