in reply to Re^2: how to get numbers only from n numbers or more digit numbers?
in thread how to get numbers only from n numbers or more digit numbers?

split by ",", shift the resulting array, here you are.

my @results = split /,/,$_; shift @results; print "@results\n";
  • Comment on Re^3: how to get numbers only from n numbers or more digit numbers?
  • Download Code