regex newbie here.
Say that I have the following string:
818y1873+130I have some text here09 124i10029102lsdgn2in3>31<
mkm1ikm12klni12m4j12??=?!=I"=and then some text heremsiJR310>39<0MK)==!)="!
What I would like to retrieve is the 31.
So, putting my query in English terms: after the string I have some text here
followed by any character, the first (double) digits you find that are/is encapsulated by ><, retrieve that group for me.
I've tried the following pattern: r'I have some text here[\s\S\w\W\d\D]+>(\d{1,2})<'
, but it returns 39–the last occurence–see: https://regex101.com/r/cevLwj/1
What am I missing here? Thanks in advance!