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.
Function remove(ByVal paramsite As String) As String
Dim RetStr As String
Dim s As String
Dim i As Integer
Dim words() As String
Dim tempStr As String
s = paramsite
words = Split(s, ",")
For i = 0 To UBound(words)
tempStr = Replace(words(i), ".", "")
tempStr = Replace(tempStr, ",", "")
tempStr = Replace(tempStr, ":", "")
If Len(tempStr) > 0 Then
words(i) = Left(words(i), words(i).Length - 2)
End If
Next
RetStr = Join(words, vbCrLf)
Return RetStr
End Function