- Home
·
- String Manipulation
·
- The fastest way to remove every instance of a string from another string, in 3 lines of code.
The fastest way to remove every instance of a string from another string, in 3 lines of code.
The fastest way to remove every instance of a string from another string, in 3 lines of code.
Rate The fastest way to remove every instance of a string from another string, in 3 lines of code.
(1(1 Vote))
'<<SC Parameters:
'<<SC strOriginalString = String from which you want to remove the "strRemoveString"
'<<SC strRemoveString = String to remove
Dim strTemp() As String
strTemp = Split(strOriginalString, strRemoveString)
RemoveCharacter = Join(strTemp, "")
End Function
The fastest way to remove every instance of a string from another string, in 3 lines of code. Comments
No comments yet — be the first to post one!
Post a Comment