fork download
  1.  
  2. // Online C++ Compiler - Build, Compile and Run your C++ programs online in your favorite browser
  3.  
  4. #include<iostream>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. string s = "20:33";
  11.  
  12. if(s.find('59')<s.length())
  13. { //to find +
  14. cout<<"+ substring found\n";
  15. } else {
  16. cout<<"+ substring not found\n";
  17. }
  18.  
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
+ substring not found