strcat

编辑本段C函数

原型

  extern char *strcat(char *dest,char *src);

用法

  #include <string.h>
  在C++中,则存在于<cstring>头文件中。

功能

  把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\0')并添加'\0'。

说明

  src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。
  返回指向dest的 指针

举例

  // strcat.c
  #include <syslib.h>
  #include <string.h>
  main()
  {
  char d[20]="Golden Global";
  char *s=" View";
  clrscr();
  strcat(d,s);
  printf("%s",d);
  getchar();
  return 0;
  }
  程序执行结果为:
  Golden Global View
  Strcat函数原型如下:
  char *strcat(char *strDest, const char *strSrc) //将源字符串加const,表明其为输入参数
  {
  char *address = strDest; //该语句若放在assert之后,编译出错
  assert((strDest != NULL) && (strSrc != NULL)); //对源地址和目的地址加非0断言
  while(*strDest) //是while(*strDest!=’\0’)的简化形式
  { //若使用while(*strDest++),则会出错,因为循环结束后strDest还会执行一次++,那么strDest
  strDest++; //将指向'\0'的下一个位置。/所以要在循环体内++;因为要是*strDest最后指
  } //向该字符串的结束标志’\0’。
  while(*strDest++ = *strSrc++)
  {
  NULL; //该循环条件内可以用++,
  } //此处可以加语句*strDest=’\0’;无必要
  return address; //为了实现链式操作,将目的地址返回
  }

编辑本段MATLAB函数

定义

  strcat 即 Strings Catenate,横向连接字符串。

语法

   combinedStr= strcat( s1, s2, ..., sN)

描述

  将 数组 s1,s2,...,sN 水平地连接成单个字符串,并保存于 变量 combinedStr中。如果任一参数是 元胞数组,那么结果 combinedStr 是一个元胞数组,否则, combinedStr是一个字符数组。

实例

  >> a = 'Hello'
  a =
  Hello
  >> b = ' Matlab'
  b =
  Matlab
  >> c = strcat(a,b)
  c =
  Hello Matlab

附注

  For character array inputs, strcat removes trailing ASCII white-spacecharacters: space, tab, vertical tab, newline, carriage return, and form-feed. To preserve trailing spaces when concatenating character arrays, use horizontal array concatenation, [ s1, s2, ..., sN]. See the final example in the following section.
  For cell array inputs, strcat does not remove trailing white space.
  When combining nonscalar cell arrays and multi-row character arrays, cell arrays must be column vectors with the same number of rows as the character arrays.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值