'Usage
Dim instance As StandardizationLogic Dim address As String Dim value As String value = instance.StandardizeStreetAddress(address)
Parameters
- address
- The address to standardize
Return Value
A standardized address
'Usage
Dim instance As StandardizationLogic Dim address As String Dim value As String value = instance.StandardizeStreetAddress(address)
//Trial Mode StandardizationLogic standardization = new StandardizationLogic(); //License Mode StandardizationLogic standardization2 = new StandardizationLogic("John Smith 101", "asdfou=="); string addressToStandardize = "1500 Serpentine Road, Suite 100"; string result = standardization.StandardizeStreetAddress(addressToStandardize); //This will output: 1500 SERPENTINE RD STE 100 Console.WriteLine(result);
'Trial Mode Dim standardization As New StandardizationLogic() 'License Mode Dim standardization2 As New StandardizationLogic("John Smith 101", "asdfou==") Dim addressToStandardize As String = "1500 Serpentine Road, Suite 100" Dim result As String = standardization.StandardizeStreetAddress(addressToStandardize) 'This will output: 1500 SERPENTINE RD STE 100 Console.WriteLine(result)
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2