in reply to Separating array contents
Hope this helps! ;-) I know this is now quite redundant - sorry for that!#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;
|
|---|