How can i keep looking the regex pattern after some string? For example... After the string "Tel.: ", find all numbers after it... Even if them are splited by another characters
"Tel: 324234 -- 2 123123 (22)" extract "324234212312322" (but using on regex expression, without another functions, or regexes)
I already accomplished to extract the first Numbers after "Tel.: "
(?<=Tel\.:\s)\d*
As i said i would like to learn how to keep looking for the "\d" groups after the first group found