Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: Regex boundary match (updated demo code)

by ultranerds (Hermit)
on Feb 08, 2020 at 14:08 UTC ( [id://11112624]=note: print w/replies, xml ) Need Help??


in reply to Re: Regex boundary match (updated demo code)
in thread Regex boundary match

Thanks. I ended up with ([^\-]). Is your version quicker? Or negligible difference? (its going to be run quite a lot of times)

Replies are listed 'Best First'.
Re^3: Regex boundary match (updated demo code)
by AnomalousMonk (Archbishop) on Feb 08, 2020 at 15:55 UTC
    I ended up with ([^\-]). ... difference?

    It depends on exactly what you want.  ([^\-]) requires a character match and consumes a character. As LanX pointed out,  ([^\-]|$) consumes a character if it can. Neither seem to do what you want:

    c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'test atest atested tested test- -test test .test test. test' +; ;; $s =~ s/\b(test)([^-])/DONE/g; print qq{'$s'}; " 'DONEatest atested DONEd test- -DONEDONE.DONEDONE test' c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'test atest atested tested test- -test test .test test. test' +; ;; $s =~ s/\b(test)([^-]|$)/DONE/g; print qq{'$s'}; " 'DONEatest atested DONEd test- -DONEDONE.DONEDONE DONE'
    Maybe this does:
    c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'test atest atested tested test- -test test .test test. test' +; ;; $s =~ s/\b(test)(?!-)\b/DONE/g; print qq{'$s'}; " 'DONE atest atested tested test- -DONE DONE .DONE DONE. DONE'

    Update: Just noticed from the timestamps that ultranerds already decided to go with LanX's suggestion. :)


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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (8)
As of 2024-04-19 09:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found