in reply to split split

$ perl -wle 'print +(split /#/, "a#b")[1];' b

You can also use undef where you don't want variable names:

my (undef, $a) = split ...