String.Replace : String « System « VB.Net by API






String.Replace

  
Imports System

Public Class MainClass
    Shared Sub Main()
        'Declare variables
        Dim strData As String
        Dim strNewData As String

        'Get the text from the TextBox
        strData = "Hello You"

        'Replace the string occurance
        strNewData = strData.Replace("Hello", "Goodbye")

        'Display the new string
        System.Console.WriteLine(strNewData)
    End Sub

End Class

   
    
  








Related examples in the same category

1.String.Compare
2.String.Concat
3.String.Copy
4.String.Empty
5.String.Equals
6.String.Format
7.String.GetEnumerator
8.String.GetHashCode()
9.String.IndexOf(String substring)
10.String.IndexOfAny(String sub)
11.String.IndexOfAny(String sub, Int count)
12.String.Insert
13.String.IsNullOrEmpty
14.String.LastIndexOf
15.String.PadLeft(Int length)
16.String.PadLeft(Int length, String char)
17.String.Split
18.String.StartsWith
19.String.Substring(Int begin)
20.String.Substring(Int begin, Int end)
21.String.ToCharArray()
22.String.ToLower()
23.String.ToUpper()