Discuss this help topic in SecureBlackbox Forum

UTF8ToStr

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  


Use this function to convert a UTF8-string to default (usually, ANSI) charset.

Declaration

[C#]
    string UTF8ToStr(byte[] ASrc);

[VB.NET]
    Function UTF8ToStr(ByVal ASrc As Byte()) As String

[Pascal]
    function UTF8ToStr(const ASrc : ByteArray) : string;

[C++]
    void UTF8ToStr(const std::vector<uint8_t> & ASrc, std::string & OutResult);

Parameters

  • ASrc - a UTF8-string to be converted

Description

Declared in

.NET:
  • Namespace: SBStrUtils
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBStrUtils
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbstrutils.h

See also:     StrToUTF8     SetDefaultCharset    

Discuss this help topic in SecureBlackbox Forum