Needle in haystack: Specific string followed by exact set of numbers
How can I search for ABC???? where ABC should be exactly that, but the ???? must be exactly four numbers, ideally followed by whitespace.
Illustrative examples:
LHRJFKABC1234 233<-- Has needleEABC123 LHRJFK<-- Does not have needle as only 3 numbers following ABC
Something tells me I need to search for string + something like (\d{4}) for the 4 numbers. But not sure quite how to puzzle it all together.
What I've found so far: