A ‘strReplace’ function.

By | 2002-06-01

When called with a string, will search through the string and replace a character of your choice with another character of your choice. For example, if you sent the string:
“Hello to the world”
And sent “o” as the character to be replaced,
and sent “a” as the replacement
It will return you with:
“Hella ta the warld”.

Original Author: Danny Young

Inputs

OldString, OldLetter and NewLetter

Assumptions

AND THIS IS FOR VB5…..

Returns

The modified string

Side Effects

None.

Code

Private Sub Command1_Click()
  Dim oldstring As String, newletter As String, oldletter As String, newstring As String
  oldstring = "hello To the world"
  newletter = "YEAH"
  oldletter = "hello"
  newstring = Replace(oldstring, newletter, oldletter)
  MsgBox newstring
End Sub

Public Function Replace(oldstring, newletter, oldletter) As String
  Dim i As Integer
  i = 1

  Do While InStr(i, oldstring, oldletter, vbTextCompare) <> 0
    Replace = Replace & Mid(oldstring, i, InStr(i, oldstring, oldletter, vbTextCompare) - i) & newletter
    i = InStr(i, oldstring, oldletter, vbTextCompare) + Len(oldletter)
  Loop
  Replace = Replace & Right(oldstring, Len(oldstring) - i + 1)
End Function

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.