I have two fields that contain addresses that I am trying to compare by making sure just the numbers match because the addresses in one of those fields are not standardized. I already have one field that contains the numbers for the addresses that are standardized so now I am trying to create a field for numbers for the non-standardized addresses. I need to extract the numbers from the other field so I can find the ones that do not match. I am trying to use this script:
int(''.join([i for i in !YourFieldName! if i.isdigit()]))
But I get an error processing popup. I am new to using python so I was hoping someone might be able to point me in the right direction. Thanks!