当前位置:   article > 正文

蓝桥杯-STL-string

蓝桥杯-STL-string

目录

字符串定义

字符串初始化

字符串输入输出

字符串输出

字符串输入

字符串访问

字符串拷贝=

字符串拼接

直接相加

append(const char*str,int n)

字符串比较

​编辑字符串长度length()/size()

字符串查找find(string str)

查找子串substr(int a,int b)

字符串的大小写转换

大写转小写tolower(char a)

小写转大写toupper(char a)

ASCII


上篇介绍了STL中的迭代器和vector,这次来介绍C++在STL中加入的string类型,对字符串常用的需求功能进行了封装,使得操作起来方便。

使用时需要加上#include<string>头文件

字符串定义

定义时于定义其他变量是一样的

其他变量定义:

int a;

字符串变量定义:

string st;

字符串初始化

初始化时也与其他变量一样直接进行赋值就行

st="abcd";或者string st="abcd";

字符串输入输出

字符串输出

输出时可以直接用cout输出:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a;
  7. a = "abcd";
  8. cout << a;
  9. return 0;
  10. }

结果如下

字符串输入

在需要输入的时候,也可以直接用cin来输入

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a;
  7. cin >> a;
  8. cout<<a;
  9. return 0;
  10. }

结果如下

字符串访问

字符串访问的时候于数组的访问是一样的可以用下标来访问

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a;
  7. cin >> a;
  8. cout << a[2];
  9. return 0;
  10. }

字符串拷贝=

字符串复制,拷贝——与其他变量复制一样,直接赋值就行

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a,b;
  7. cin >> a;
  8. b = a;
  9. cout << "a=" << a << endl;
  10. cout << "b=" << b << endl;
  11. return 0;
  12. }

结果如下

字符串拼接

将两个字符串接连在一起,可以使用直接相加的方式,或者使用append(const char*str,int n)函数

直接相加

代码示例:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a,b,c;
  7. cin >> a >> b;
  8. c = a + b;
  9. cout << endl;
  10. cout << "a=" << a << endl;
  11. cout << "b=" << b << endl;
  12. cout << "c=" << c << endl;
  13. return 0;
  14. }

运行结果

append(const char*str,int n)

append是封装在string里面的函数,用来拼接两个字符串,append()函数里面的形参有两个,

1)需要拼接的常量字符串;

2)需要拼接字符串的长度;

这两个参数,可以只写const char *str,   也可以两个都写,下面是具体的代码示例:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a,b;
  7. a = "hello ";
  8. cout << "拼接前:"<<endl;
  9. cout << "a=" << a << endl;
  10. a = a.append("sheep", 2 );
  11. cout << "拼接后(将sheep的前两个字符拼接到a(hello )):" << endl;
  12. cout << "a=" << a << endl;
  13. cout << endl;
  14. b = "hello ";
  15. cout << "拼接前:" << endl;
  16. cout << "b=" << b << endl;
  17. b = b.append("sheep");
  18. cout << "拼接后(将sheep全部拼接到b(hello )):" << endl;
  19. cout << "b=" << b << endl;
  20. return 0;
  21. }

运行结果如下:

字符串比较

字符串比较时,可以直接用==,!=,<,<=,>,>=比较大小,比较规则是ASCII码,从第一个字符逐字开始比较;

这写符号比较时:是真的返回1,否则返回0;具体示例如下:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a, b,c;
  7. a = "abc";
  8. b = "abc";
  9. c = "acb";
  10. cout <<"(a == b )——" <<(a == b) << endl;
  11. //对于这个来说,a,c的比较先是第一个字符的比较,相等后,比较第二个字符 ,字符b的ascII码值大于c的ascii码值
  12. //就结束比较的符合a<=c;
  13. cout <<"(a <= c)——" << (a <= c) << endl;
  14. cout <<"(a >= c)——" <<(a >= c) << endl;
  15. return 0;
  16. }

运行结果如下

字符串长度length()/size()

获取字符串长度,通常用length()或者size(),都是获取字符串的实际长度,没有C语言里面的‘\0’

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a = "abcde";
  7. cout << a << endl;
  8. cout << "a.length()——" << a.length()<<endl;
  9. cout<<"a.size()——"<< a.size() << endl;
  10. return 0;
  11. }

运行结果如下

字符串查找find(string str)

查找第一次出现的目标字符串通常运用find()函数,如果查找成功,则输出查找的第一个位置,否则返回-1;具体示例如下

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a = "abcdecd",b="cd";
  7. cout <<"查找abcdecd中的cd:——"<< a.find(b) << endl;
  8. cout <<"查找abcdecd中的ec:——" << a.find("ec") << endl;
  9. return 0;
  10. }

运行结果如下

查找子串substr(int a,int b)

一般是查找当前字符串的子串,用substr(),substr()可以用两个参数,也可以用一个参数

substr(a,b)——一般是从a下标到b下标的子字符串

substr(a)——一般是从a下标到结尾的子字符串

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a = "abcdecd";
  7. cout << a<<endl<<endl;
  8. cout << "a.substr(2, 5)——"<<a.substr(2, 5) << endl;
  9. cout <<"a.substr(5)——"<< a.substr(5) << endl;
  10. cout << "a.substr(0,5)——"<<a.substr(0, 5);
  11. return 0;
  12. }

字符串的大小写转换

大写转小写tolower(char a)

tolower(char a)只能对单个字符进行转换,转换完后记得强转---另外对小写字母自动跳过

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a = "ABCDE";
  7. cout << a << endl;
  8. for (int i = 0; i < a.size(); i++)
  9. {
  10. cout <<(char) tolower(a[i]);
  11. }
  12. return 0;
  13. }

小写转大写toupper(char a)

toupper(char a)只能对单个字符进行转换,转换完后记得强转---另外对大写字母自动跳过

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string a = "abcdA";
  7. cout << a << endl;
  8. for (int i = 0; i < a.size(); i++)
  9. {
  10. cout <<(char) toupper(a[i]);
  11. }
  12. return 0;
  13. }

ASCII

大写字母比小写字母小——32

字符数字和整形数字相差——48

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. cout << "A——"<<(int)'A' << endl;
  6. cout << "Z——" << (int)'Z' << endl;
  7. cout << "a——" << (int)'a' << endl;
  8. cout << "z——" << (int)'z' << endl;
  9. cout << "a-A——" << (int)'a' - 'A' << endl;
  10. cout << "0——" << (int)'0' << endl;
  11. cout << "'1'-48——"<<'1' - 48 << endl;
  12. return 0;
  13. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/415850
推荐阅读
相关标签
  

闽ICP备14008679号