Closed gdprdatasubect closed 1 year ago
You're missing a second "\", as documented here: https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_QL#Value_matches_regular_expression_(~,_!~)
Please note that in QL you need to escape backslashes: ...
Anyway, you probably want to do something like the following instead.
nw["addr:housenumber"~"^[0-9]{4}$"]({{bbox}});
out center;
Also, please head to https://community.osm.org next time, since your question has nothing to do with the overpass turbo website code.
I thought it was an issue on the website and not my own stupidity, sorry
Hello,
i tried finding large housenumbers, but the following did not work:
Am i missing something or using it wrong?