PlatformBytesOf - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ PlatformBytesOf


把字符串转成字节数组,采用 UTF-16 编码

头文件:#include
命名空间:System::Sysutils
函数原型:

System::DynamicArray __fastcall PlatformBytesOf(const System::UnicodeString Value);

参数:

  • Value:字符串

返回值:

  • 把 Value 按照 UTF-16 编码转成的字节数组;
  • 与 BytesOf 比较:
    • BytesOf 采用系统默认的编码,UTF-8 或 ANSI (请参考《C++ Builder 的字符串类型、字符类型、字符编码》);
    • PlatformBytesOf 采用 UTF-16 编码;
  • PlatformBytesOf 内部通过调用 TEncoding::Unicode->GetBytes(Value); 来实现的。

相关:

  • System::Sysutils::BytesOf
  • System::Sysutils::WideBytesOf
  • System::Sysutils::PlatformBytesOf
  • System::Sysutils::StringOf
  • System::Sysutils::WideStringOf
  • System::Sysutils::PlatformStringOf
  • System::Sysutils::ByteLength
  • System::Sysutils::CharLength
  • System::Sysutils::StrCharLength
  • System::Sysutils::AnsiLastChar
  • System::Sysutils::AnsiStrLastChar
  • System::Sysutils::AnsiPos
  • System::Sysutils::AnsiStrPos
  • System::Sysutils::AnsiStrScan
  • System::Sysutils::AnsiStrRScan
  • System::Sysutils::CharToElementIndex
  • System::Sysutils::CharToElementLen
  • System::Sysutils::ElementToCharIndex
  • System::Sysutils::ElementToCharLen
  • System::Sysutils::TEncoding
  • System::Sysutils
  • std::mblen
  • std::_mbstrlen
  • std::strlen, std::_fstrlen, std::_tcslen, std::wcslen

C++ Builder 参考手册 ➙ System::Sysutils ➙ PlatformBytesOf

你可能感兴趣的:(PlatformBytesOf - C++ Builder)