Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Convert Byte Array to StringUse the StrConv function with "vbUnicode" to convert a byte array of ANSI characters to a string.
Dim s As String
Dim b(1 To 3) As Byte
b(1) = Asc("A")
b(2) = Asc("B")
b(3) = Asc("C")
s = StrConv(b, vbUnicode)
' We now have a string containing "ABC"
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.