strcat
函数
将两个char类型连接。
C函数
原型
extern char *strcat(char *dest, const char *src);
用法
#include
头文件
在C中,函数原型存在 头文件中。
在C++中,则存在于头文件中。
功能
说明
src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。
举例
程序执行结果为:
GoldenGlobalView
Strcat函数原型如下(以下代码为错误代码,想要通过char *指针修改字符串常量中的字符会导致Segment fault错误):
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.
参考资料
最新修订时间:2023-12-29 19:17
目录
概述
C函数
参考资料