I am trying to read the value
Colli 182515612/OT 37/SA
The only value I'll need is 182515612
. Since there are multiple 9 digits numbers found in the file I need the regex to look for Colli
and then just separate the 9 digit value after that from everything else.
I have tried [^colli ](\d{9})
and [colli ][0-9]{9}
The second one seems to at least read out the value however it seems to just look for the numbers with an empty space in front of it, so it might read out other values as well.