首页 > 编程 > C > 正文

c语言 字符串的拼接和分割实例

2020-01-26 13:21:27
字体:
来源:转载
供稿:网友

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语言 字符串的拼接和分割实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选