In the following split on an email address, if I do not want the first part of the string, what is the best way to let Perl know this? I thought maybe undefined would work, but Perl did not like that. Should I just assign it to a temp variable and not use it again? I would think this is bad practice.
my $domain;
(undefined,$domain) = split(/\@/,$email);
print "Domain is $domain\n";