Trying to exclude zips of the form ##### or #####-####
am not getting an error but I am not getting a match result
The string is of the form: 111 SomeStreet 33124
I tested the regex Im using in a regex test site and it didn't work. The regex Im using:
^.*(?<!\d{5}(-\d{4})?)$
