Edit: Complete rewrite.
As long as <parent> tags can't be nested, this is possible, but only then (and all the usual caveats about not trying to match XML with regexes apply. As soon as you have comments or CDATA sections in your XML, all bets are off).
(?s)<version>0\.0\.1-SNAPSHOT</version>(?!(?:(?!</?parent>).)*</parent>)
Explanation:
(?s) # Turn on singleline matching mode
<version>0\.0\.1-SNAPSHOT</version> # Match this string
(?! # but only do this if it's impossible to match this regex here:
(?: # Try to match...
(?!</?parent) # (as long as there is no <parent> or </parent> tag ahead)
. # any character
)* # any number of times
</parent> # Then match </parent>
) # End of lookahead
Ztag, right (if it's not a "parent" tag)? – Tim Pietzcker Feb 7 at 9:49<A><B><version>0.0.1-SNAPSHOT</version></B></A>. What I don't want is<A><project><version>0.0.1-SNAPSHOT</version></project></A>– Car981 Feb 7 at 9:58<Z attribute="parent">bam</Z>but<foo>bar</foo>baz<parent>bam<parent>, and you want to matchbarandbazbut notbam? – Tim Pietzcker Feb 7 at 10:11