prog6_09.cpp
来自「一本语言类编程书籍」· C++ 代码 · 共 30 行
CPP
30 行
// Program 6.9 Searching a string
#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\"."
"\n \"Had had\" had had the examiners' approval.";
string word = "had"; // Substring to be found
cout << endl << "The string is: " << endl << text << endl;
// Count the number of occurrences of word in text
int count = 0; // Count of substring occurrences
for(size_t index = 0 ; (index = text.find(word, index)) != string::npos ;
index += word.length(), count++)
;
cout << "Your text contained "
<< count << " occurrences of \""
<< word << "\"."
<< endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?