I would need to have an expression that would work just like the following one using negative lookahead (as far as I’m aware Apsic doesn’t support lookaround regexes):
ne(?!ke)
So I need to match terms that start with ‘ne’ but then doesn’t allow ‘ke’, while everything else is fine (neod…, neto… etc.)
Is there any way? Or maybe it would be possible to add lookarounds in future versions?
Thank you! Yes, I know that there is a possibility to exclude term like this, but I was hoping there is another one, as this in fact excludes not only the term, but the whole segment containing the term. So whenever I have the sentence with both “neke” and another term that I would like to be flagged (starting with “ne…”), the whole segment won’t be flagged.
But it seems this is the best of possible options, thank you!