June 2017
Intermediate to advanced
532 pages
12h 59m
English
We will implement a little tool that searches for user-provided text patterns in files. The tool works similar to the UNIX tool grep, but will not be as mature and powerful, for the sake of simplicity.
#include <iostream> #include <fstream> #include <regex> #include <vector> #include <string> #include <filesystem> using namespace std; using namespace filesystem;
Read now
Unlock full access