Replace the string with the given character
Replace the string with the given character
Rate Replace the string with the given character
(1(1 Vote))
Dim iCount As Integer
Dim sInput As String
sInput = vsInput
iCount = InStr(sInput, vsReplace)
While iCount
sInput = Left$(sInput, iCount - 1) & vsWith & Right$(sInput, Len(sInput) - iCount)
iCount = InStr(sInput, vsReplace)
Wend
Replace = sInput
End Function
Replace the string with the given character Comments
No comments yet — be the first to post one!
Post a Comment