http://qs321.pair.com?node_id=183507


in reply to Re: Re: Re: checking the end of line
in thread checking the end of line

For a string 'stuff_here_then_12' ($path =~ /(\d+)$/)[0] captures the 12

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: checking the end of line
by dimmesdale (Friar) on Jul 20, 2002 at 14:04 UTC
    $1 captures 12, you are right. However, you do an array slice thing with the [0] part -- which on my machine perl 5.6.1 AS build 633 produces an error; I have to move the parentheses around the regex itself. And when you print it, it shows a 1 on my computer. I just don't see the need for the [0]
      What error does it produce on your machine? On mine, the array slice is necessary to put the regex in list context so that it returns the captured string instead of the true or false value it returns in scalar context
        Syntax error becuase of )[

        With the parens around JUST the regex it works (but returns a 1).

        Assigning the results to an array or using the $1 variable, however, would get around this if the user is having any problems ...

        Has anyone else been having problems with PM? I checked my firewall, and it seems that the banners up top keep 'timing-out', so the whole page takes forever to load.