- or download this
my @userArray = qw(batman robin joker);
my @userArray2; #this is a null array
my @mainArray = (@userArray, @userArray2);
- or download this
#@set should consist "batman robin joker", but not
#"batman robin joker NULL"
- or download this
my @set = map { exists($_)? $_ : delete($_) } @mainArray;