I am trying to get a pattern match on different parts here.
Example: Something.AnotherSomthing.FinalSomething = x
I have one ExplicitPatternGroup for something and it works
I have set the lookahead for AnotherSomething to be [^Something\.]
I have set the lookahead for FinalSomething to be [^AnotherSomething\.]
But It only matches on Something? Any Idea's, by the way, I really have never used regex.
Tx
Example: Something.AnotherSomthing.FinalSomething = x
I have one ExplicitPatternGroup for something and it works
I have set the lookahead for AnotherSomething to be [^Something\.]
I have set the lookahead for FinalSomething to be [^AnotherSomething\.]
But It only matches on Something? Any Idea's, by the way, I really have never used regex.
Tx