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


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

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.

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: Re: checking the end of line
by I0 (Priest) on Jul 20, 2002 at 22:13 UTC
    If you're getting a syntax error, perhaps you typed it in wrong.

    Perhaps you meant
    if($path =~ /(\d+)$/ == 0) { print "No number found\n"; } else { print "number is $1\n"; }