Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: matching lines in a long string

by AnomalousMonk (Archbishop)
on May 30, 2020 at 14:52 UTC ( [id://11117504]=note: print w/replies, xml ) Need Help??


in reply to Re: matching lines in a long string
in thread matching lines in a long string

I disagree slightly with your narrative. A split pattern of  /(?m)\n(?=$)/ will split on any newline that is followed immediately by a newline (i.e., consequtive newlines) or on a newline at the end of the string (producing an empty string). This can be seen to be happening with modified text (and with a split LIMIT of -1 to preserve trailing null fields):

c:\@Work\Perl\monks>perl use strict; use warnings; use feature 'say'; my $s = <<'EOF'; int t; //variable t t->a=0; //t->a does;; something printf("\nEnter the Employee Name : "); scanf("%s", ptr->name); return 0; EOF for my $line (split/(?m)\n(?=$)/, $s, -1) { say '<' . $line . '>', "\n"; } __END__ <int t; //variable t t->a=0; //t->a does;; something> < printf("\nEnter the Employee Name : "); scanf("%s", ptr->name); return 0;> <>

I agree that the simplest and best approach is to split on what the OPer wants to split on, i.e., newlines, and forget about the  /m modifier and everything else.


Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-25 22:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found