Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,888 questions

51,815 answers

573 users

How to remove the last occurrence of a word from a string in VB.NET

1 Answer

0 votes
Imports System

Public Class RemoveTheLastOccurrenceOfAWordFromAString_VB_NET
    Public Shared Function removeLastOccurrenceOfAWordFromAString(ByVal str As String, ByVal word As String) As String
        Dim pos As Integer = str.LastIndexOf(word, StringComparison.Ordinal)

        If pos <> -1 Then
            str = str.Substring(0, pos) & str.Substring(pos + word.Length)
        End If

        Return str
    End Function

    Public Shared Sub Main(ByVal args As String())
        Dim str As String = "vb c# c python vb c++ java vb php rust"
        Dim word As String = "vb"
		
        str = removeLastOccurrenceOfAWordFromAString(str, word)
		
        Console.WriteLine(str)
    End Sub
End Class



' run:
'
' vb c# c python vb c++ java  php rust
'

 



answered Sep 8, 2024 by avibootz
...