⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prog6_10.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Program 6.10 Searching a string for characters from a set
#include <iostream>
#include <string>
using std::cout;
using std::endl;
using std::string;

int main() {
  // The string to be searched
  string text = "Smith, where Jones had had \"had had\", had had \"had\"."
                " \"Had had\" had had the examiners' approval.";

  string separators = " ,.\"";                     // Word delimiters

  // Find the start of the first word
  size_t start = text.find_first_not_of(separators);
  size_t end = 0;                                 // Index for the end of a word

  // Now find and output the words
  int word_count = 0;                              // Number of words
  while(start != string::npos) {
    end = text.find_first_of(separators, start + 1); // Find end of word
    if(end == string::npos)                        // Found a separator?
      end = text.length();                         // No, so set to last + 1

    cout << text.substr(start, end - start)        // Output the word
         << endl;
    word_count++;                                  // Increase the count

    // Find the first character of the next word
    start = text.find_first_not_of(separators, end + 1);
  }

  cout << "Your string contained "
       << word_count << " words."
       << endl;

  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -