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






String.Copy

  

Imports System
Imports System.Collections

Public Class MainClass
    
    Shared Sub Main()
             Dim s1 As String = "abcd"
             Dim s2 As String = "ABCD"
             Dim s3 As String = "Liberty Associates, Inc. provides "
             s3 = s3 & "custom .NET development"

             Dim s5 As String = String.Copy(s2)
             Console.WriteLine("s5 copied from s2: {0}", s5)


             Dim location As Integer = s3.IndexOf("provides")

             Dim s10 As String = s3.Insert(location, "usually ")
             Console.WriteLine("s10: {0}", s10)
   End Sub

End Class

   
    
  








Related examples in the same category

1.String.Compare
2.String.Concat
3.String.Empty
4.String.Equals
5.String.Format
6.String.GetEnumerator
7.String.GetHashCode()
8.String.IndexOf(String substring)
9.String.IndexOfAny(String sub)
10.String.IndexOfAny(String sub, Int count)
11.String.Insert
12.String.IsNullOrEmpty
13.String.LastIndexOf
14.String.PadLeft(Int length)
15.String.PadLeft(Int length, String char)
16.String.Replace
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()