String.Substring(Int begin, Int end) : String « System « VB.Net by API






String.Substring(Int begin, Int end)

  


Public Class MainClass

   Public Shared Sub Main()

       'Strings
        Dim strConstant As String = "ABC"
        Dim strRepeat As New String("A"c, 20)
        Dim strMyString As String = "Hello World"
        Console.WriteLine(strMyString.Substring(0, 5))
        Console.WriteLine(strMyString.Substring(6))
        
   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.Replace
18.String.Split
19.String.StartsWith
20.String.Substring(Int begin)
21.String.ToCharArray()
22.String.ToLower()
23.String.ToUpper()