Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How to enforce match priority irrespective of string position

by jcb (Parson)
on Mar 09, 2021 at 00:17 UTC ( [id://11129356]=note: print w/replies, xml ) Need Help??


in reply to How to enforce match priority irrespective of string position

If you can advance incrementally through the text, you could try anchoring all of your patterns at pos with \G. Since pos is an lvalue, you could store the previous match position, try each pattern in priority order starting at the same previous position, take whichever match you prefer, store that into pos, and repeat for the next chunk. Something like: (untested)

my $lastpos = 0; while ($lastpos < length $_) { my @matches = (undef x 3); pos = $lastpos; $matches[0] = pos if m/\G([^/?!"]+[.?!"])/gc; #FIRST PRIORITY pos = $lastpos; $matches[1] = pos if m/\G([^:;-]+[:;-])/gc; #SECOND PRIORITY pos = $lastpos; $matches[2] = pos if m/\G(.*(?:\n|\r|\z|$))/gc; #LAST PRIORITY # somehow choose which match to use for the next cycle and set $last +pos here # substr $_, $lastpos, ($matches[$chosen] - $lastpos) # should yield the selected chunk between choosing a match and upda +ting $lastpos }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-25 16:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found