CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2001
    Posts
    24

    Replacing Certain Text

    Say you have a text box and it has a paragraph, is there any way to make it go through and replace all the "the"s in the text box to "blah"s?


  2. #2
    Join Date
    Mar 2001
    Posts
    26

    Re: Replacing Certain Text

    Hi

    It is very simple, you should use "Replace" function, see MSDN for details

    Ehsan


  3. #3
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Replacing Certain Text

    You can use either Replace if it is VB6. For earlier versions here is the code:

    Public Sub ReplaceAll(ByRef sOrigStr As String, _
    ByVal sFindStr As String, _
    ByVal sReplaceWithStr As String, _
    Optional bWholeWordsOnly As Boolean)
    '
    ' Replaces all occurances of sFindStr with sReplaceWithStr
    '
    Dim lPos As Long
    Dim lPos2 As Long
    Dim sTmpStr As String
    Dim bReplaceIt As Boolean
    Dim lFindStr As Long


    On Error GoTo vbErrorHandler

    lFindStr = Len(sFindStr)

    lPos2 = 1
    bReplaceIt = True
    sTmpStr = sOrigStr

    Do
    lPos = InStr(lPos2, sOrigStr, sFindStr)
    If lPos = 0 Then
    Exit Do
    End If
    If bWholeWordsOnly Then
    On Error Resume Next
    If lPos = 1 Or (Mid$(sOrigStr, lPos - 1, 1) = " ") Then
    If (Mid$(sOrigStr, lPos + lFindStr, 1) = " ") Or Mid$(sOrigStr, lPos + lFindStr + 1, 1) = "" Then
    bReplaceIt = True
    Else
    bReplaceIt = False
    End If
    End If
    End If
    If bReplaceIt Then
    If lPos > 1 Then
    sTmpStr = Left$(sOrigStr, lPos - 1)
    Else
    sTmpStr = ""
    End If
    sTmpStr = sTmpStr & sReplaceWithStr
    sTmpStr = sTmpStr & Mid$(sOrigStr, lPos + lFindStr, Len(sOrigStr) - (lPos + lFindStr - 1))
    sOrigStr = sTmpStr
    End If
    lPos2 = lPos + 1
    Loop
    sOrigStr = sTmpStr
    Exit Sub

    vbErrorHandler:
    Err.Raise Err.Number, "ACStrHandler ReplaceAll", Err.Description


    End Sub


    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured