I am writing a code for a Signals Software. The summary of logic goes as: users input --> String--> split at white spaces--> ArrayPerWord --> SignalArrayPerArrayPerWord. Output is loop. Up to here my code works well. Only the remaining part left is how to join this loop-output in a sequence. I am searching for concatenating these arrays like String concatenation as:
str=str+str1;
something like:
SignalArrayPerArrayPerWord=SignalArrayPerArrayPerWord + SignalArrayPerArrayPerWord1;
in other words:
array=array+array1;
I need help at this last step.