well i need to convert a string text array into byte array "utf-8"
is there any function to do that ??
Printable View
well i need to convert a string text array into byte array "utf-8"
is there any function to do that ??
you can convert a string to a byte array, but i am not sure what you mean by a string text array, is that an array or a string or an array of strings
vb Code:
Dim str As String, byt() As Byte str = "test this" byt = str