Excel Vba Replace Part Of A String

[Solved] Excel Vba Replace Part Of A String | Vb - Code Explorer | yomemimo.com
Question : excel vba replace part of a string

Answered by : daniel-ferry

'VBA function to replace a substring... if it exists in the full
'string. Checking to see if it exists is very quick. Replacing is
'slow by comparison. So it is wise to check first:
Function IfInReplace$(s$, substr1$, replacement$, Optional CaseSensitivity = vbTextCompare) If InStr(1, s, substr1, CaseSensitivity) Then s = Replace(s, substr1, replacement, , , CaseSensitivity) IfInReplace = s
End Function
'---------------------------------------------------------------------------------------------------
MsgBox IfInReplace("abc123def", "123", "") '<--displays: abcdef

Source : http://academy.excelhero.com/ | Last Update : Mon, 11 May 20

Answers related to excel vba replace part of a string

Code Explorer Popular Question For Vb