htmldocument.cpp

来自「k-means源码(K均值聚类算法源码)」· C++ 代码 · 共 26 行

CPP
26
字号
// replace_all and strip_tags are taken from the book// "thinking in c++ volume 2" (bruce eckel)#include <sstream>#include <fstream>#include <iostream>#include <string>#include "HTMLDocument.h"using namespace std;#ifdef TESTint main() {	// cout << "Expected output: text without tags" << endl;	// HTMLDocument html("content/test");	// cout << "Output: " << html << endl;		return 0;}#endif

⌨️ 快捷键说明

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