Building a Parser: Actions 

number_with_spaces:     /[\d -]+/ 
    {
        ($return = $item[1]) =~ s/\D//g 
    }