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.
Sub test()
calling = help("123455*44")
MsgBox calling
End Sub
Function help(stuff)
Dim Counter
Dim sNumeric
Dim vendofloop
sNumeric = stuff
vendofloop = Len(sNumeric)
Counter = 0
Do While Counter < vendofloop
Counter = Counter + 1
If IsNumeric(Mid(sNumeric, Counter, 1)) Then
Else
sNumeric = Left(sNumeric, Counter - 1) & Right(sNumeric, Len(sNumeric) - Counter)
Counter = Counter - 1
vendofloop = Len(sNumeric)
End If
Loop
help = sNumeric
End Function