字符串处理函数

时间:2023-01-07 16:23:25

strcat()
strcat()函数用来连接字符串,其原型为:
char * strcat(char *dest, const char * src);
【参数】dest为目的字符串指针,src为源字符串指针。
strcat()会将参数src字符串复制到参数dest所指的字符串尾部;dest最后的结束字符NULL会被覆盖掉,并在连接后的字符串尾部再增加一个NULL。
注意:dest与src所指的内存空间不能重叠,且dest要有足够的空间来容纳要复制的字符串。
【返回值】返回dest字符串起始地址。

#include "stdafx.h"
#include <stdio.h>
#include<string.h>
#pragma warning(disable:4996)

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{

char dest[100];
char * src = "jparser";
strcpy(dest, src);
strcat(dest, ".exe");
printf("%s", dest);
}

字符串处理函数