123456789101112
# geht:$x = 'a-b-c';$y = (split /-/, $x)[1];print $y;# geht nicht mehr:$x = 'a-b-c';print (split /-/, $x)[1];# geht wieder:$x = 'a-b-c';print ((split /-/, $x)[1]);