Hi!
How can images stored like this be represented by regular expressions, as shown in the image below?
Hi @day0,
I assume you mean you want to extract the two values.
Something like below should work BUT this specifically is looking for 2 digit numbers for the first element and 1 digit only for the second so it will need to be changed if your numbers go over that.
(?P<Element1>[0-9]{2})_(?P<Element2>[0-9]{1}).tif