The fastest way to replace every instance of a string with another string
The fastest way to replace every instance of a string with another string
Rate The fastest way to replace every instance of a string with another string
(1(1 Vote))
'<<SC Parameters:
'<<SC strOriginalString = String from which you want to remove the "strRemoveString"
'<<SC strReplaceString = String to replace
'<<SC strAddString = string to Add
Dim strTemp() As String
strTemp = Split(strOriginalString, strReplaceString)
ReplaceCharacter = Join(strTemp, strAddString)
End Function
The fastest way to replace every instance of a string with another string Comments
No comments yet — be the first to post one!
Post a Comment