I have strings, and i want to find in them 2 words: START
and END
.
START
and END
always come together (maybe i will have another characters between them, but if i have START
, i will have END
too).
Between first START
and last END
, i can have another couples of START
and END
.
I try to do with regEx source that find the first START
and than his own END
, and it will return the correct substring between them.
here is the regEx diagram of what i need:
(i need to get the string between the first START
to the last END
)