Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: matching lines in a long string

by Athanasius (Archbishop)
on May 30, 2020 at 04:21 UTC ( [id://11117493]=note: print w/replies, xml ) Need Help??


in reply to matching lines in a long string

Hello Cristoforo,

Within the look-ahead assertion (?=$), the metacharacter $ means:

Match the end of the string (or before newline at the end of the string; or before any newline if /m is used) (from “Metacharacters” in perlre#The-Basics)

Since it comes after the newline within the regex pattern — and your string contains no consecutive newlines — it can match only at the very end of the string. This explains the behaviour you’re seeing.

If you remove the look-ahead:

for my $line (split/(?m)\n/, $s) {

the output is displayed line-by-line, as expected.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^2: matching lines in a long string
by AnomalousMonk (Archbishop) on May 30, 2020 at 14:52 UTC

    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://11117493]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-18 03:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found