#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;