Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: String Newline Question

by Parham (Friar)
on Mar 24, 2002 at 16:46 UTC ( [id://153903]=note: print w/replies, xml ) Need Help??


in reply to String Newline Question

it wasn't part of the real question, nonetheless it's another good point:

if you had a string:

$string = "something\n0999\nsomething\n";

and you matched against it ending with 999 with the /m option, it would also work. For example using this regex would yield a pass for the regex:

if ($string =~ /999$/m) { print "pass"; }

/m just treats the $string as a multi-line string and if it finds 999 at the end of any line in $string (remember $ means before the newline) then the regex would still work. I thought i'd just throw that in cuz it was useful :).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-26 03:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found