L
Larry
If there is a smaller string in a larger string, I want to delete the
smaller string. Is it possible to do this? I've tried simply making
smallString = "", but that hasn't worked yet.
' Test code
mainString = Selection.Text
smallString = "HELLO"
If InStr(mainString, smallString) > 0 Then
' What?
Thanks.
smaller string. Is it possible to do this? I've tried simply making
smallString = "", but that hasn't worked yet.
' Test code
mainString = Selection.Text
smallString = "HELLO"
If InStr(mainString, smallString) > 0 Then
' What?
Thanks.