#!usr/bin/perluse warnings;use strict;my $string = "\nThis-is:a\@test-for,*you.";my @words = split( /[-:@*]/, $string );print "$_\n" foreach ( @words );