fork download
  1. #include <iostream>
  2. #include <sstream>
  3. using namespace std;
  4.  
  5. int main() {
  6. string text = "APPLE enter your source code or insert template or sample or your template";
  7. stringstream ss;
  8. ss.str(text);
  9. for (string word; ss >> word;) {
  10. cout << word << endl; // or do what ever you want with word
  11. if (word == "APPLE") {
  12. //...
  13. cout << "found an APPLE" << endl;
  14. } else if (word == "ORANGE") {
  15. //...
  16. }
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
APPLE
found an APPLE
enter
your
source
code
or
insert
template
or
sample
or
your
template