当前位置: 代码迷 >> 综合 >> substr(),strstr()函数
  详细解决方案

substr(),strstr()函数

热度:58   发布时间:2023-09-30 02:24:38.0

substr(),strstr()函数用法

[cpp] view plain copy
  1. #include <iostream>  
  2. #include <string.h>  
  3. using namespace std;  
  4.   
  5. int main()  
  6. {  
  7.     string s="abcdefg";  
  8.     string s1=s.substr(2,6);//s1为字符串s起始位置为2,长度为6的一段字符串,注意s的位置是从0开始的,即‘a'的位置为0  
  9.     cout<<"s1="<<s1<<endl;  
  10.   
  11.     string s2=s.substr(5);//s2为字符串s起始位置为2,一直到s的末尾的一段字符串  
  12.     cout<<"s2="<<s2<<endl;  
  13.     return 0;  
  14. }  


substr(),strstr()函数



strstr(*str1, *str2)实现从字符串str1中查找是否有字符串str2,如果有,从str1中的str2位置起,返回str1中str2起始位置的指针,如果没有,返回null。

cout<<strstr("hello","ll"); 则输出 llo , 返回的是指针

[cpp] view plain copy
  1. #include <iostream>  
  2. #include <string.h>  
  3. using namespace std;  
  4.   
  5. int main()  
  6. {  
  7.     char a[]="my dream will come true";  
  8.     char *p;  
  9.     p=strstr(a,"dream");//a中找到字符串dream,返回其起始指针  
  10.     cout<<p<<endl;  
  11.   
  12.     p=strstr(a,"yy");  
  13.     if(p==NULL)//找不到该串  
  14.         cout<<"not find"<<endl;  
  15.     else  
  16.         cout<<p<<endl;  
  17.     return 0;  
  18. }  

substr(),strstr()函数
  相关解决方案