C++ Builder 参考手册 ➙ System::Sysutils ➙ StrLCat
把一个字符串的前面一部分连接在另一个字符串后面
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
char *__fastcall StrLCat(char *Dest, const char *Source, unsigned MaxLen);
System::WideChar *__fastcall StrLCat(System::WideChar *Dest, const System::WideChar *Source, unsigned MaxLen);
参数:
- Dest:把 Source 的内容连接在 Dest 后面;
- Source:把 Source 的内容连接在 Dest 后面;
- MaxLen:Dest 的最大允许长度;
返回值:
- 把 Source 的内容连接在 Dest 后面 (Dest 字符串内容被修改),Dest 的长度达到 MaxLen 个字符就停下来不继续复制了,函数返回 Dest;
例子:
void __fastcall TForm1::Button1Click(TObject *Sender)
{
wchar_t d[20] = L"abcdefg";
wchar_t s[] = L"hijklmnopqrstuvwxyz";
StrLCat(d, s, 10);
Memo1->Lines->Add(d);
}
运行结果:得到的字符串 d 为 L"abcdefghij" 长度为 10 个字符。
相关:
- 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::StrNew
- System::Sysutils::StrPCopy
- System::Sysutils::StrPLCopy
- System::Sysutils
- std::strcat, std::_fstrcat, std::_tcscat, std::wcscat
- <cstring>
C++ Builder 参考手册 ➙ System::Sysutils ➙ StrLCat