当前位置:   article > 正文

C++ 字符串长度和字符串查找_c++如何找到一串字符多位数

c++如何找到一串字符多位数

代码:

string str1 = "this is a test";
char* c = "this is a test";
cout << "sizeof(str1):" << sizeof(str1) << endl; //28
cout << "sizeof(c):" << strlen(c) << endl;    //14
cout << "str1.length():" << str1.length() << endl; //14
//字符串查找
string str2 = "www.baidu.com";
string str3 ="bai";
int wh=0;
wh = str2.find(str3); //返回下标
cout << "str2.find(str3) 查找到的字符在字符串中的位置是: " << wh << endl; //4
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/177222
推荐阅读
相关标签
  

闽ICP备14008679号