C++ Builder 參考手冊 ? System::Sysutils ? StrEnd
返回指向字符串結束符的指針
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
char *__fastcall StrEnd(const char *Str);
System::WideChar *__fastcall StrEnd(const System::WideChar *Str);
參數(shù):
- Str:字符串;
返回值:
- 指向 Str 字符串結束符的指針;
- 如果往這個返回值指針位置復制其他字符串的內(nèi)容,新復制的內(nèi)容會連接在原字符串 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
- <cstring>
C++ Builder 參考手冊 ? System::Sysutils ? StrEnd