Questions tagged [street-address]

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods.

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods. Data quality is a big issue surrounding street addresses, because they are not simple strings or numbers such as an email address or phone number. Therefore capturing, storing, de-duplicating and verifying street addresses all pose challenges.

577 questions
0
votes
2 answers

Android Linkify TextView: Linkify Dutch address

I was wondering, does anyone know how to get an address in a textview matched by the Linkify in Android and make it a clickable link? I think I can figure out how to do this manually, but I was wondering if I have to match the address against a…
Orion
  • 1,258
  • 2
  • 14
  • 32
0
votes
0 answers

Geocoder doesn't work

I have a problem with Geocoder. I have done some research but i didn't find an answer to my problem. This is my code: public String getAddress(double lat,double lon){ TextView tv=(TextView)findViewById(R.id.textView3); TextView…
MilanNz
  • 1,323
  • 3
  • 12
  • 29
0
votes
1 answer

Enforce unique addresses or allow duplicates?

We are creating a database with multiple entities that will use mailing addresses. Some of those entities can have multiple addresses while others can only have a single address. We decided to centralize the addresses in a single table called…
DCNYAM
  • 11,966
  • 8
  • 53
  • 70
0
votes
1 answer

How to look up ZIP/Postal Code by City using Google Maps API?

How can I extract a Postal Code or ZIP of a place by giving Google Maps a city on the map? Basically I'm looking for a free verification service for checking completed addresses for accurate details. I seem to remember the maps API can somehow…
John K
  • 28,441
  • 31
  • 139
  • 229
0
votes
0 answers

AutocompleteTextView with addresses

I have created simple Activity with AutcompleteTextView. I am trying to fetch addresses from input string using google geocode api. I get addresses in log but cant get them in the autocomplete view :/ What am I doing wrong ? public class…
0
votes
1 answer

iPhone: Update All address (Home, Work, Other) of contact

i am creating a new contact programmatically. it work well except address. following is the code to add a contact ABAddressBookRef libroDirec = ABAddressBookCreate(); ABRecordRef persona = ABPersonCreate(); ABRecordSetValue(persona,…
Rupesh
  • 7,866
  • 11
  • 41
  • 58
0
votes
1 answer

How to combine two regex for address form validation?

I have two regexes 1.) For invalidating PO Box: ^(?!.*\b[P|p]*(OST|ost)*\.*\s*[O|o|0]*(ffice|FFICE)*\.*\s*[B|b][O|o|0][X|x]\b).*$ 2.) For invalidating special characters: [^x21-x7E][^x20-x7E]*$ How can I combine these two that it invalidates PO…
0
votes
1 answer

Customer Address Data - Filter postal code by district

We are creating customers on SAP CRM and replicate these customers to SAP ECC. User needs to filter postal codes by the district code they choose while creating customer. This functionality has provided by SAP ECC. But in CRM we couldnt find any…
Merve Gül
  • 1,377
  • 6
  • 23
  • 40
0
votes
2 answers

Parsing name and address information with differing number of spaces

I have a comma delimited text file. The 5th field on each line contains the name and address information. The name is separated from the street information by a '¬' character. The same character also separates the city|state|zip. A sample field…
Count Boxer
  • 673
  • 3
  • 11
  • 25
0
votes
2 answers

Excel Formula to split address from name (=LEFT(A1,Find an Interager etc..))

This formula works on some of of my cells and not others, I've checked to see if the formatting was different but could find nothing. I have for instance a Cell that says "Dell Computers 12150 sandy dr portland or 97229" What I want is just to get…
Dm3k1
  • 187
  • 3
  • 8
  • 21
0
votes
4 answers

Address String Split in javascript

Ok folks I have bombed around for a few days trying to find a good solution for this one. What I have is two possible address formats. 28 Main St Somecity, NY 12345-6789 or Main St Somecity, Ny 12345-6789 What I need to do Is split both…
Arasoi
  • 25
  • 1
  • 8
0
votes
2 answers

Parsing Street Address Using RegEx

I know there are many questions asked on this topic. I am trying to parse and fetch street addresses from html page. The format of these page do not follow any patterns. Can someone help me in comming up with a regex that would match a street…
Nemin
  • 1,907
  • 6
  • 24
  • 37
0
votes
1 answer

Extract adjacent word? (Names, streets, creeks, rivers)

Extract adjacent word? (Names, streets, creeks, rivers) Hi I am looking for a function that I can run through a massive list of paragraphs to extract the word proceeding ‘creek’ such that the creek names could be isolated. For example a given…
Matthew Bayly
  • 556
  • 5
  • 7
0
votes
0 answers

how to get location address in android

i new to android .i got one tutorial from internet to find the location address. when i used this code in my real device. it is fore stopped. perhaps i may do some mistakes somewhere in my code. if some one please suggest me proper solution so…
user1234567
  • 63
  • 2
  • 10
0
votes
2 answers

Regex for C/O in address line

I'm trying to write a regex to detect any c/o patterns in my address line. I want my regex to detect patterns like Care Of, c/o, c.o., CareOf, etc. I've done PO Box, email address validations, etc. in the past, but this is new to me. I'm not very…