Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function StripNumber(strAddress As String) As String
'To return the NON-Numeric bytes in a string
'Usage:
'? StripNumber("124 Smith Sreet")
'Smith Sreet
'? StripNumber("124A Smith Sreet")
'A Smith Sreet
Dim intCnt As Integer
Dim MyChr As String * 1
Dim MyAddr As String
For intCnt = 1 To Len(strAddress)
MyChr = Mid(strAddress, intCnt, 1)
If (Not IsNumeric(MyChr)) Then
MyAddr = MyAddr & MyChr
End If
Next intCnt
StripNumber = Trim(MyAddr)
End Function