Help for this page
my @array = split /,/, $string; my $value = pop @array;
my $value = ( split /,/, $string )[ -1 ];