当前位置:   article > 正文

C/C++ 字符串拷贝处理_c++字符串拷贝

c++字符串拷贝

C语言的字符串操作

strtok 实现字符串切割: 将字符串根据分隔符进行切割分片.

  1. #include <stdio.h>
  2. int main(int argc, char* argv[])
  3. {
  4. char str[] = "hello,lyshark,welcome";
  5. char *ptr;
  6. ptr = strtok(str, ",");
  7. while (ptr != NULL)
  8. {
  9. printf("切割元素: %s\n", ptr);
  10. ptr = strtok(NULL, ",");
  11. }
  12. system("pause");
  13. return 0;
  14. }

strlen 获取字符串长度:

  1. #include <stdio.h>
  2. int main(int argc, char* argv[])
  3. {
  4. char Array[] = "\0hello\nlyshark";
  5. char Str[] = { 'h', 'e', 'l', 'l', 'o' };
  6. int array_len = strlen(Array);
  7. printf("字符串的有效长度:%d\n", array_len);
  8. int str_len = strlen(Str);
  9. printf("字符串数组有效长度: %d\n", str_len);
  10. int index = 0;
  11. while (Str[index] != '\0')
  12. {
  13. index++;
  14. printf("Str数组元素: %c --> 计数: %d \n", Str[index], index);
  15. }
  16. system("pause");
  17. return 0;
  18. }

strcpy 字符串拷贝:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int main(int argc, char* argv[])
  5. {
  6. char Array[] = "hello lyshark";
  7. char tmp[100];
  8. // 学习strcpy函数的使用方式
  9. if (strcpy(tmp, Array) == NULL)
  10. printf("从Array拷贝到tmp失败\n");
  11. else
  12. printf("拷贝后打印: %s\n", tmp);
  13. // 清空tmp数组的两种方式
  14. for (unsigned int x = 0; x < strlen(tmp); x++)
  15. tmp[x] = ' ';
  16. memset(tmp, 0, sizeof(tmp));
  17. // 学习strncpy函数的使用方式
  18. if (strncpy(tmp, Array, 3) == NULL)
  19. printf("从Array拷贝3个字符到tmp失败\n");
  20. else
  21. printf("拷贝后打印: %s\n", tmp);
  22. system("pause");
  23. return 0;
  24. }

strcat字符串连接: 将由src指向的空终止字节串的副本追加到由dest指向的以空字节终止的字节串的末尾

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int main(int argc, char* argv[])
  5. {
  6. char str1[50] = "hello ";
  7. char str2[50] = "lyshark!";
  8. char * str = strcat(str1, str2);
  9. printf("字符串连接: %s \n", str);
  10. str = strcat(str1, " world");
  11. printf("字符串连接: %s \n", str);
  12. str = strncat(str1, str2, 3);
  13. printf("字符串连接: %s \n", str);
  14. system("pause");
  15. return 0;
  16. }

strcmp 字符串对比:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int Str_Cmp(const char * lhs, const char * rhs)
  5. {
  6. int ret = strcmp(lhs, rhs);
  7. if (ret == 0)
  8. return 1;
  9. else
  10. return 0;
  11. }
  12. int main(int argc, char* argv[])
  13. {
  14. char *str1 = "hello lyshark";
  15. char *str2 = "hello lyshark";
  16. int ret = Str_Cmp(str1, str2);
  17. printf("字符串是否相等: %d \n", ret);
  18. if (!strncmp(str1, str2, 3))
  19. printf("两个字符串,前三位相等");
  20. system("pause");
  21. return 0;
  22. }

strshr 字符串截取:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int main(int argc, char* argv[])
  5. {
  6. const char str[] = "hello ! lyshark";
  7. char *ret;
  8. ret = strchr(str, '!');
  9. printf("%s \n", ret);
  10. system("pause");
  11. return 0;
  12. }

字符串逆序排列:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. void Swap_Str(char *Array)
  5. {
  6. int len = strlen(Array);
  7. char *p1 = Array;
  8. char *p2 = &Array[len - 1];
  9. while (p1 < p2)
  10. {
  11. char tmp = *p1;
  12. *p1 = *p2;
  13. *p2 = tmp;
  14. p1++, p2--;
  15. }
  16. }
  17. int main(int argc, char* argv[])
  18. {
  19. char str[20] = "hello lyshark";
  20. Swap_Str(str);
  21. for (int x = 0; x < strlen(str); x++)
  22. printf("%c", str[x]);
  23. system("pause");
  24. return 0;
  25. }

实现字符串拷贝:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. // 使用数组实现字符串拷贝
  5. void CopyString(char *dest,const char *source)
  6. {
  7. int len = strlen(source);
  8. for (int x = 0; x < len; x++)
  9. {
  10. dest[x] = source[x];
  11. }
  12. dest[len] = '\0';
  13. }
  14. // 使用指针的方式实现拷贝
  15. void CopyStringPtr(char *dest, const char *source)
  16. {
  17. while (*source != '\0')
  18. {
  19. *dest = *source;
  20. ++dest, ++source;
  21. }
  22. *dest = '\0';
  23. }
  24. // 简易版字符串拷贝
  25. void CopyStringPtrBase(char *dest, const char *source)
  26. {
  27. while (*dest++ = *source++);
  28. }
  29. int main(int argc, char* argv[])
  30. {
  31. char * str = "hello lyshark";
  32. char buf[1024] = { 0 };
  33. CopyStringPtrBase(buf, str);
  34. printf("%s \n", buf);
  35. system("pause");
  36. return 0;
  37. }

格式化字符串:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int main(int argc, char* argv[])
  5. {
  6. // 格式化填充输出
  7. char buf[30] = { 0 };
  8. sprintf(buf, "hello %s %s", "lyshark","you are good");
  9. printf("格式化后: %s \n", buf);
  10. // 拼接字符串
  11. char *s1 = "hello";
  12. char *s2 = "lyshark";
  13. memset(buf, 0, 30);
  14. sprintf(buf, "%s --> %s", s1, s2);
  15. printf("格式化后: %s \n", buf);
  16. // 数字装换位字符串
  17. int number = 100;
  18. memset(buf, 0, 30);
  19. sprintf(buf, "%d", number);
  20. printf("格式化后: %s \n", buf);
  21. system("pause");
  22. return 0;
  23. }

动态存储字符串:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. int main(int argc, char* argv[])
  5. {
  6. // 分配空间
  7. char **p = malloc(sizeof(char *)* 5);
  8. for (int x = 0; x < 5;++x)
  9. {
  10. p[x] = malloc(64);
  11. memset(p[x], 0, 64);
  12. sprintf(p[x], "Name %d", x + 1);
  13. }
  14. // 打印字符串
  15. for (int x = 0; x < 5; x++)
  16. printf("%s \n", p[x]);
  17. // 释放空间
  18. for (int x = 0; x < 5; x++)
  19. {
  20. if (p[x] != NULL)
  21. free(p[x]);
  22. }
  23. system("pause");
  24. return 0;
  25. }

字符串拼接:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. char * StringSplicing(char *String1, char *String2)
  5. {
  6. char Buffer[1024];
  7. int index = 0;
  8. int len = strlen(String1);
  9. while (String1[index] != '\0')
  10. {
  11. Buffer[index] = String1[index];
  12. index++;
  13. }
  14. while (String2[index - len] != '\0')
  15. {
  16. Buffer[index] = String2[index - len];
  17. index++;
  18. }
  19. Buffer[index] = '\0';
  20. char *ret = (char*)calloc(1024, sizeof(char*));
  21. if (ret)
  22. strcpy(ret, Buffer);
  23. return ret;
  24. }
  25. int main(int argc, char* argv[])
  26. {
  27. char *str1 = "hello ";
  28. char *str2 = "lyshark ! \n";
  29. char * new_str = StringSplicing(str1, str2);
  30. printf("拼接好的字符串是: %s", new_str);
  31. system("pause");
  32. return 0;
  33. }

实现strchr:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. char * MyStrchr(const char *String, char ch)
  5. {
  6. char *ptr = String;
  7. while (*ptr != '\0')
  8. {
  9. if (*ptr == ch)
  10. return ptr;
  11. ptr++;
  12. }
  13. return NULL;
  14. }
  15. int main(int argc, char* argv[])
  16. {
  17. char Str[] = "hello lyshark";
  18. char ch = 's';
  19. char *ptr = MyStrchr(Str, ch);
  20. printf("输出结果: %s \n", ptr);
  21. system("pause");
  22. return 0;
  23. }

自己实现寻找字符串子串:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. // 查找子串第一次出现的位置
  4. char *MyStrStr(const char* str, const char* substr)
  5. {
  6. const char *mystr = str;
  7. const char *mysub = substr;
  8. while (*mystr != '\0')
  9. {
  10. if (*mystr != *mysub)
  11. {
  12. ++mystr;
  13. continue;
  14. }
  15. char *tmp_mystr = mystr;
  16. char *tmp_mysub = mysub;
  17. while (tmp_mysub != '\0')
  18. {
  19. if (*tmp_mystr != *tmp_mysub)
  20. {
  21. ++mystr;
  22. break;
  23. }
  24. ++tmp_mysub;
  25. }
  26. if (*tmp_mysub == '\0')
  27. {
  28. return mystr;
  29. }
  30. }
  31. return NULL;
  32. }
  33. int main(int argc, char* argv[])
  34. {
  35. char *str = "abcdefg";
  36. char *sub = "fg";
  37. char * aaa = MyStrStr(str, sub);
  38. printf("%s", aaa);
  39. system("pause");
  40. return 0;
  41. }

删除字符串中连续字符

  1. #include <stdio.h>
  2. char del(char s[],int pos,int len) //自定义删除函数,这里采用覆盖方法
  3. {
  4. int i;
  5. for (i=pos+len-1; s[i]!='\0'; i++,pos++)
  6. s[pos-1]=s[i]; //用删除部分后的字符依次从删除部分开始覆盖
  7. s[pos-1]='\0';
  8. return s;
  9. }
  10. int main(int argc, char *argv[])
  11. {
  12. char str[50];
  13. int position,length;
  14. printf ("please input string:\n");
  15. gets(str); //使用gets函数获得字符串
  16. printf ("please input delete position:");
  17. scanf("%d",&position);
  18. printf ("please input delete length:");
  19. scanf("%d",&length);
  20. del(str,position,length);
  21. printf ("the final string:%s\n",str);
  22. return 0;
  23. }

C++的字符串操作

在C语言中想要输出数据需要使用Printf来实现,但C++中引入了另一种输出方式,C++中形象的将此过程称为流,数据的输入输出是指由若干个字节组成的字节序列,这些序列从一个对象中传递到另一个对象,我们将此过程形象的表示为数据的流,数据流可以包括ASCII字符,二进制数据,图形图像数据,音频数据等,流都将可以操作.

字符串类的初始化:

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main(int argc, char* argv[])
  5. {
  6. string str("hello lyshark"); // 定义一个字符串
  7. string str_1(str); // 构造函数,将 str中的内容全部复制到str_1
  8. cout << str_1 << endl;
  9. string str_2(str, 2, 5); // 构造函数,从字符串str的第2个元素开始,复制5个元素,赋值给str_2
  10. cout << str_2 << endl;
  11. string str_3(str.begin(), str.end()); // 复制字符串 str 的所有元素,并赋值给 str_3
  12. cout << str_3 << endl;
  13. char ch[] = "lyshark";
  14. string str_4(ch, 3); // 将字符串ch的前5个元素赋值给str_4
  15. cout << str_4 << endl;
  16. string str_5(5, 'x'); // 将 5 个 'X' 组成的字符串 "XXXXX" 赋值给 str_5
  17. cout << str_5 << endl;
  18. system("pause");
  19. return 0;
  20. }

标准输出流: 首先我们演示标准的输入输出,其需要引入头文件<iostream>

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. using namespace std;
  4. int main(int argc, char* argv[])
  5. {
  6. char str[] = "lyshark";
  7. int number = 0;
  8. cout << "hello: " << str << endl;
  9. cin >> number;
  10. if (number == 0)
  11. {
  12. cerr << "Error msg" << endl; // 标准的错误流
  13. clog << "Error log" << endl; // 标准的日志流
  14. }
  15. int x, y;
  16. cin >> x >> y; // 一次可以接受两个参数
  17. freopen("./test.log", "w", stdout); // 将标准输出重定向到文件
  18. system("pause");
  19. return 0;
  20. }

格式化输出: 在程序中一般用cout和插入运算符“<<”实现输出,cout流在内存中有相应的缓冲区。

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. #include <iomanip>
  4. using namespace std;
  5. int main(int argc, char* argv[])
  6. {
  7. cout << hex << 100 << endl; // 十六进制输出
  8. cout << dec << 100 << endl; // 十进制输出
  9. cout << oct << 100 << endl; // 八进制输出
  10. cout << fixed << 10.053 << endl; // 单浮点数输出
  11. cout << scientific << 10.053 << endl; // 科学计数法
  12. cout << setw(10) << "hello" << setw(10) << "lyshark" << endl; // 默认两个单词之间空格
  13. cout << setfill('-') << setw(10) << "hello" << endl; // 指定域宽,输出字符串,空白处以'-'填充
  14. for (int x = 0; x < 3; x++)
  15. {
  16. cout << setw(10) << left << "hello" ; // 自动(left/right)对齐,不足补空格
  17. }
  18. cout << endl;
  19. system("pause");
  20. return 0;
  21. }

单个字符输出: 流对象中,提供了专用于输出单个字符的成员函数put

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. #include <iomanip>
  4. using namespace std;
  5. int main(int argc, char* argv[])
  6. {
  7. char *str = "lyshark";
  8. for (int x = 6; x >= 0; x--)
  9. cout.put(*(str + x)); // 每次输出一个字符
  10. cout.put('\n');
  11. system("pause");
  12. return 0;
  13. }

标准输入流: 通过测试cin的真值,判断流对象是否处于正常状态.

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. #include <iomanip>
  4. using namespace std;
  5. int main(int argc, char* argv[])
  6. {
  7. float grade;
  8. while (cin >> grade)
  9. {
  10. if (grade >= 85)
  11. cout << grade << " good" << endl;
  12. }
  13. system("pause");
  14. return 0;
  15. }

读取字符串: getline函数的作用是从输入流中读取一行字符

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. #include <iomanip>
  4. using namespace std;
  5. int main(int argc, char* argv[])
  6. {
  7. char str[20];
  8. int x, y, z;
  9. cin >> x >> y >> z;
  10. cout << x << y << z;
  11. cin.getline(str, 20); // 读入字符遇到\n结束读取
  12. cout << str << endl;
  13. cin.getline(str, 20, 'z'); // 读入字符遇到z字符才结束
  14. cout << str << endl;
  15. system("pause");
  16. return 0;
  17. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/563114
推荐阅读
相关标签
  

闽ICP备14008679号