?? htmldocument.cpp
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -