Hi, I'm using this regex to find all words ending with apostrophe, excluding the word po’.
Now I'd like to exclude other words (fa’, di’...), so I'm wondering if there is a way to exclude a sequence, something like:
or
(I know these examples don't work... but I hope I gave an idea about what I'm searching for)
:thanks:
Code:
(([^\s]..)|([^p].)|(.[^o]))’\b
Code:
(?!(\bpo|\bfa|\bdi))’\b
Code:
[^(<\bpo>|<\bfa>|<\bdi>)]’\b
:thanks: