in reply to Separating array contents

Hi,

I do these things like this using split function:
#First you should join the array first, like shown by space_monk above +. #Then you got something like that.. my $string = "! my name ! is !Achint ! I need ! help"; #Here the '!' is the delimiter. my @Array = split(/!/,$string); print @Array;
Hope this helps! ;-) I know this is now quite redundant - sorry for that!