lstrcat函数是Windows操作系统中的一个字符串处理函数。它可以将两个字符串连接起来,将第二个字符串拼接到第一个字符串的末尾,并将结果存储在第一个字符串的缓冲区中。 lstrcat函数的原型为: LPTSTR lstrcat( LPTSTR lpString1, LPCTSTR lpString2 ); 其中,lpString1表示目标字符串,lpString2表示要拼接的字符串。该...
lstrcat(p, p2); ShowMessage(p);{Delphi 2009}FreeMemory(p);end;varbuf:array[0..255]ofChar;procedureTForm1.Button4Click(Sender: TObject);varp1,p2: PChar;beginp1 :='万一的 '; p2 :='Delphi 博客'; lstrcat(buf, p1); lstrcat(buf, p2); ShowMessage(buf);{万一的 Delphi 博客}end;end....
(Sender: TObject); var p,p1,p2: PChar; begin p1 := 'Delphi'; p2 := '2009'; GetMem(p, 256); p^ := #0; lstrcat(p, p1); lstrcat(p, ' '); lstrcat(p, p2); ShowMessage(p); {Delphi 2009} FreeMem(p); end; procedure TForm1.Button2Click(Sender: TObject); var p1,p2: ...
函数原型:LPTSTR lstrcat(LPTSTR lpString1,LPCTSTR lpString2);函数功能:该函数将一个字符串附加在另一个字符串后面。参数:lpString1:一个以NULL为终止符字符串指针。这个缓冲区必须足够大能包含两个字符串。lpString2:一个以NULL为终止符字符串指针,它将追加在由lpString1中指定的缓冲区中。返回值...
将一个字符串追加到另一个字符串。 警告 请勿使用。 请考虑改用 StringCchCat。 请参阅安全注意事项。 语法 C++ 复制 LPSTR lstrcatA( [in, out] LPSTR lpString1, [in] LPCSTR lpString2 ); 参数 [in, out] lpString1 类型: LPTSTR 第一个以 null 结尾的字符串。 此缓冲区必须足够大,才能包含这两...
}lstrcatA(p, utemp->pszUID);lstrcatA(p," "); utemp = utemp->next; }returnp; }returnNULL; } pTemp = pTemp->next; }returnNULL; } 开发者ID:BackupTheBerlios,项目名称:mimplugins-svn,代码行数:39,代码来源:manager.c 示例4: WarnIniChangeDlgProc ...
drivePathAgain = "E:\\"; sprintf(newname, "FILE-%s-%02d%02d%02d-%02d%02d.txt", szVolNameBuff, lt.wYear, lt.wMonth, lt.wDay, lt.wHour, lt.wMinute); lstrcat((LPWSTR)drivePathAgain, (LPWSTR)newname); result = MoveFile((LPCWSTR) drivePath, (LPCWSTR) drivePathAgain ); I can't ...
翻译结果4复制译文编辑译文朗读译文返回顶部 lstrcata 翻译结果5复制译文编辑译文朗读译文返回顶部 lstrcatA 相关内容 a半夜找上门非要跟他法式热吻 Midnight looks visits non-must with his Buddhist ritual procedures hot lips [translate] amore than 75%in the whole plan 正在翻译,请等待... [translate] aBiom...
void lstrcat_ex1() { char *ptr = NULL; char szStr[80] = "This is the first part. "; string str1 = "This is the second part."; ptr = lstrcat(szStr, str1); if(0 == strcmp(ptr, "This is the first part. This is the second part.")) printf("the string after the ...