解脱 发表于 2009-4-22 00:28:54

往一个字符串里加一段新的字符串的方法~内详

比如说一个数组str[]中的内容是"abc",如果像把"efg"也加入进去,怎么处理?

除了用format,还有什么其他办法?

BliaNe 发表于 2009-4-22 23:54:07

只要有一种方法不就行了!!

Rulzy 发表于 2009-4-24 10:17:42

strcat ( dest[], const source[], maxlength )

Maxlength is the total buffer of the destination.
(Maxlength是目标总长度)

zwfgdlc 发表于 2009-4-24 23:08:26

/* Adds one string to another. Last parameter different from 0, specifies
* how many chars we want to add. Function returns number of all merged chars. */
native add(dest[],len,const src[],max=0);add()函数也可以的,或者用COPY()也行.
页: [1]
查看完整版本: 往一个字符串里加一段新的字符串的方法~内详