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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#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语言 字符串的拼接和分割实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qy0808/article/details/51173669