in reply to Re: Regex boundary match
in thread Regex boundary match

> 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

Replies are listed 'Best First'.
Re^3: Regex boundary match
by ultranerds (Hermit) on Feb 08, 2020 at 14:24 UTC
    Cool thanks - I'll go with your suggestion then :) Much appreciated