Loop through characters in string and display reversed : String and Byte Char Array « Data Type « VB.Net Tutorial






Module Tester

   Sub Main()
      Dim string1 As String
      Dim characterArray As Char()
      Dim i As Integer
      Dim quotes As Char = ChrW(34)

      string1 = "hello there"
      characterArray = New Char(5) {}

      For i = string1.Length - 1 To 0 Step -1
         Console.WriteLine(string1.Chars(i))
      Next

   End Sub ' Main

End Module
e
r
e
h
t

o
l
l
e
h








2.28.String and Byte Char Array
2.28.1.Convert String to Char using System.Convert.ToChar
2.28.2.ToCharArray methods
2.28.3.Strings And Byte Arrays
2.28.4.String and char array
2.28.5.Reorder chars in a string
2.28.6.Loop through characters in string and display reversed
2.28.7.Use IndexOf to locate a character in a string
2.28.8.Use LastIndexOf to find a character in a string
2.28.9.Converts a substring within a string to an array of characters, then enumerates and displays the elements of the array.