Regex – pattern to match text from one street number to the next

Looking to extract addresses from the street number to the next street number. For all street numbers. For example to use in a Python script like this snippet:

pattern =  (\d+[^0-9]+)(?!\d) # specifying the search pattern
streetSuburbJob = re.findall(pattern, text) # Return a list of strings that match the pattern

Using regex101 I’m getting close with my pattern. But there is one match I’m missing and this is going to get me when I apply this to the full data set.
number to number

See regex demo

The use of the slash to describe a flat number 3/40A complicates things. How do I modify my regex to allow for the situation where the street address number contains this character?

Read more here: Source link