ToCharArray methods : String and Byte Char Array « Data Type « VB.Net Tutorial






Imports System.Text

Module Tester

   Sub Main()
      Dim string1 As String = "hello"
      Dim i As Integer
      Dim charArray() As Char = string1.ToCharArray()


      ' display contents of charArray
      For i = 0 To charArray.Length - 1
         Console.WriteLine(charArray(i))
      Next
   End Sub ' Main

End Module
h
e
l
l
o








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.