windows cat grep equivalent

C++
Use findstr in Windows with following command line structure:
findstr [/I] [/S] "substring" "regex_file_name"
/I   Case-insensitive search.
/S   Search files in subfolders recursively.Use cat with find in Windows PowerShell
cat [Filename] | find "search"
Source

Also in C++: