次の 2 つの配列があるとします。
a[i] = "space separated string"
b[i] = "22"
次のように3番目の配列を作成したい:
c[i]= "${a[i]} ${b[i]}} #appending two string with space between them.
ループなしで可能ですか?
次の 2 つの配列があるとします。
a[i] = "space separated string"
b[i] = "22"
次のように3番目の配列を作成したい:
c[i]= "${a[i]} ${b[i]}} #appending two string with space between them.
ループなしで可能ですか?