Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: Re: Re: Re: Re: checking the end of line

by I0 (Priest)
on Jul 20, 2002 at 17:17 UTC ( [id://183626]=note: print w/replies, xml ) Need Help??


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

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
  • Comment on Re: Re: Re: Re: Re: Re: checking the end of line

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: checking the end of line
by dimmesdale (Friar) on Jul 20, 2002 at 19:45 UTC
    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.

      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"; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://183626]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-16 06:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found