Address data extraction from text via asp.net (vb.net) -


i have address data surrounded random text. there way extract data either call web service or vb.net function?

example: 1111 s wilson road apt b8 city state 55555 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

if random data 0's, try doing string.replace rid of 0's , trim() rid of spaces. use regex accomplish same task rid of 0's.

if random data random, there way can introduce delimiters in @ beginning , end of address? instance, have:

#1111 s wilson road apt b8 city state 55555# 0 0 0 0 0 0 0 0 0 0 0 0  

this way, substring function extract data need using special characters delimiters.

-d


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -