http://www.perlmonks.org?node_id=1038696


in reply to Re: 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?

chapter 01 no need only 02,03,04
  • Comment on Re^2: how to get numbers only from n numbers or more digit numbers?

Replies are listed 'Best First'.
Re^3: how to get numbers only from n numbers or more digit numbers?
by aitap (Curate) on Jun 13, 2013 at 07:32 UTC

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

    my @results = split /,/,$_; shift @results; print "@results\n";
Re^3: how to get numbers only from n numbers or more digit numbers?
by 2teez (Vicar) on Jun 13, 2013 at 07:31 UTC

    use warnings; use strict; my $f='chapter 01,02,03,04'; if(my @m=$f=~/,([0-9]{2})/g){ print "@m\n"; #prints 02 03 04 }
    Note: I would rather use a scalar variable, instead of an array variable with only one element like you had.

    If you tell me, I'll forget.
    If you show me, I'll remember.
    if you involve me, I'll understand.
    --- Author unknown to me
      if your using use @m array.. if possible to store in any variable.

        if your using use @m array.. if possible to store in any variable.

        No, all variables must be named @m