I want to find a range of characters with a specified start, end and a minimum length.
For example: From the sequence select a range witch starts with a
and ends with c
and contains 5
or more characters.
The sequence: dabbcbcbabce
I'm trying to get this result: abbcbc
The regex what I'm first tried: a(.*?)c
and the result of that: abbc
.
And the second: a(.*)c
and the result of that: abbcbcbabc
.