1.字符串的拼接
使用c的函数char *strcat(char *str_des, char *str_sou);
将字符串str_sou接在字符串str_des后面(放在str_des的最后字符和“\0”之间)。
注意不要越界,可用strlen(input)函数求字符串长度之后再拼接。
2. 字符串的分割
使用c的函数 char *strtok(char *str_sou,constchar *str_sep);
str_sou:待分割字符串。str_sep:分割符号。
第一次调用:temp = strtok(input, a);(input:字符串,a:分隔符);
之后调用: temp = strtok(NULL, a);
temp为分割后得到的字符串。
3. demo
#include <string.h> #include <stdio.h> int main(void) { char input[16]; //拼接,a:分割符号;b,c:2个字符串 char *a = ":", *b = "1", *c = "我是qy"; printf("拼接前的字符串(乱码):%s\n",input); //input 没有初始化,打印的是乱码 strcpy(input,b); strcat(input,a); strcat(input,c); printf("拼接后的字符串:%s\n",input); // 长度:printf("拼接后的字符串的长度: %d\n",strlen(input)); char *temp; temp = strtok(input, a); if (temp) printf("分割符号前的字符串 : %s\n", temp); temp = strtok(NULL, a); if (temp) printf("分割符号后的字符串 : %s\n",temp); return 0; }
以上这篇c语言 字符串的拼接和分割实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。