I am trying to search the following pattern :
<b>.+</b>$
But this pattern must not contain a <b>
tag.
Given the following example:
abba <b>acba</b> <b>adba</b>
If I use the previous pattern, the result is :
<b>acba</b> <b>adba</b>
But the good result, which I want is :
<b>adba</b>
Because I want disallow a <b>
tag between the two <b>
and </b>
border tags.
So, how can I do that?
I use QRegExp and I code in c++ language.
Thank you in advance for your help,
Floréal.