3015 POE RD., HOUSTON, TX 77051
Do I need to do something first, or is this something that can be corrected in the street parser?
Oh, the call I am making is
for sa in street_address.finditer(res):
res = sa.string
break
This is working for other addresses but first one it failed on. Also unlike RE, it stopped on a \n and ignored the next line. Do I need to pre-parse the text?
3015 POE RD., HOUSTON, TX 77051
Do I need to do something first, or is this something that can be corrected in the street parser?
Oh, the call I am making is
for sa in street_address.finditer(res):
res = sa.string
break
This is working for other addresses but first one it failed on. Also unlike RE, it stopped on a \n and ignored the next line. Do I need to pre-parse the text?