I have a regex like the following:
.{0,1000}(?!(xa7|para(graf))$)
using Java. I was expecting that it would cause the following text to fail:
blaparagraf
because paragraf is found at the end
|
I have a regex like the following:
using Java. I was expecting that it would cause the following text to fail: blaparagraf because paragraf is found at the end |
||||
|
|
|
That's because You want negative lookbehind:
|
|||||
|
|
It is a common a mistake to misplace assertions. If you want to use lookahead, the pattern is something like this:
This matches (as seen on rubular.com):
But doesn't match:
So the key difference here is that we start looking ahead at the beginning of the string, before we match That said, to check that a string doesn't end with something of finite length, lookbehind when supported is the most natural solution.
|
|||
|
|