Stuck with the following issue:
I have a string 'ABC.123.456XX' and I want to use regex to extract the 3 numeric characters that come after the second period. Really struggling with this and would appreciate any new insights, this is the closest I got but its not really close to what I want:
'.*\.(.*?\.\d{3})'
I appreciate any help in advance - thanks.