Hello, I have a list of addresses and I am trying to check which ones have numbering and which ones do not. However, I have some strings that end with number and I'm trying to create a regex to filter those results. I do not want you to return numbers that come after the words "street" and "km."
> #exemplo:
> enderecos <- c("rua 5", "rua x, casa y", "km 18")
>
> #resultado esperado:
> FALSE TRUE FALSE
Thank you for helping me.