Lets say that this whole thing down there is a string and I would like to match all those words within < and > who end with words dog or bird. It can be done also done by using regex like this:
<.+(dog|bird)>
But I am trying to select by using NOT selector. Only if it NOT ends with cat, it should be selected. Is it actually possible to select something that doesn't contain come word in regex?
<This is dog>
<This is also a dog>
<This is cat>
<Dog and cat>
<Where is dog>
<I am a bird>
<I am another bird>
Thanks,
Vizualni.