I put in online testers the regular expression => .{3}(?<=USD\d{3})
and Subject string => USD100 and this returns 100.
I'd like to know is how the regex engine works in this case?
How the regex engine returns this 100?
Regular Expression: .{3}(?<=USD\d{3})
Subject: USD100
Returns: 100