StrConv$ Function

Syntax:

StrConv[$](Str,Conv)

Group: String

Description:
Convert the string.

Parameter Description


Str Convert this string value. If this value is Null then Null is returned.

Conv This numeric value indicates the type of conversion. See conversion table below.

Conv Value Effect


See Also: LCase$( ), StrComp( ), UCase$( ).

Example:


Sub Main
  Dim B(1 To 3) As Byte
  B(1) = 65
  B(2) = 66
  B(3) = 67
  Debug.Print StrConv$(B,vbUnicode) '"ABC"
End
Sub