Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Regex boundary match

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


in reply to Regex boundary match

I think I may have found a way to do it:

$test =~ s{\b(test)\b([^\-]|$)}{change_for_url($1,$2)}eg;

Can anyone see any possible issues with that?

Replies are listed 'Best First'.
Re^2: Regex boundary match
by LanX (Saint) on Feb 08, 2020 at 14:10 UTC
    > Can anyone see any possible issues with that?

    Well, maybe not in this case, but this ([^\-]|$) will consume a position.

    This can become an issue if you start combining with following matches.

    That's why I recommended a "lookahead assertion" which is zero width.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

      Cool thanks - I'll go with your suggestion then :) Much appreciated

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-25 23:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found