I'd like to extract all the occurences of this regex
\d{7,8}
(every number that has 7 or 8 length)
The input cuould be something like
asd123456789bbaasd
what I want is an array with:
["1234567", "12345678", "2345678", "23456789"]
all the possible occurencies of a number that has 7 or 8 lenth.
Regex.Matches works diferent, it returns all the consecutive occurencies of matches.... ["12345678"]
Any idea?