in reply to Re^2: Unsplit An Array
in thread Unsplit An Array
Ikegami:
Thanx for your input a variation ofyourline of code did the trick
@Make_Whole = join( '', @splitted_word );
I had tried the following prior to posting for help and hadnt work:
@Make_Whole = join( //, @splitted_word );
It did work with commas however thanx again
VirtualWeb