I have an array of strings: @array
I want to concatenate all strings beginning with array index $i to $j.
How can I do this?
|
I have an array of strings: I want to concatenate all strings beginning with array index
| ||||
|
feedback
|
| |||||||||||||||||
feedback
|
First we generate an array slice with the values that we want, then we join them on the empty character ''. | ||||
|
feedback
|
|
Just enclosing a perl array in quotes is enough to concatenate it, if you're happy with spaces as the concatenation character:
or of course
if you'd prefer "c-d-e-f". | |||
feedback
|
|
Try this ....
| |||||||
feedback
|