StrEnd - C++ Builder

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


返回指向字符串结束符的指针

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

char *__fastcall StrEnd(const char *Str);
System::WideChar *__fastcall StrEnd(const System::WideChar *Str);

参数:

  • Str:字符串;

返回值:

  • 指向 Str 字符串结束符的指针;
  • 如果往这个返回值指针位置复制其他字符串的内容,新复制的内容会连接在原字符串 Str 的后面。

相关:

  • System::Sysutils::StrAlloc
  • System::Sysutils::StrBufSize
  • System::Sysutils::StrCat
  • System::Sysutils::StrComp
  • System::Sysutils::StrCopy
  • System::Sysutils::StrDispose
  • System::Sysutils::StrECopy
  • System::Sysutils::StrEnd
  • System::Sysutils::StrIComp
  • System::Sysutils::StrLCat
  • System::Sysutils::StrLComp
  • System::Sysutils::StrLCopy
  • System::Sysutils::StrLen
  • System::Sysutils::StrMove
  • System::Sysutils::StrNew
  • System::Sysutils::StrPCopy
  • System::Sysutils::StrPLCopy
  • System::Sysutils
  • std::strcpy, std::_fstrcpy, std::_tcscpy, std::wcscpy

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

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