Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <codecvt>
- #include <fstream>
- #include <string>
- #include <algorithm>
- using namespace std;
- int main() {
- //The input file path:
- //you just need to change it's value to access different files
- string inputFileName = R"(permutations-contact-keyword-export.txt)";
- //The output file path:
- //No need to change anything here
- string outFileName = "updated-" + inputFileName;
- //Open the input file
- wifstream inFile(inputFileName);
- //Open the output file
- wofstream outFile;
- outFile.open(outFileName, std::ios::binary);
- //Copy from input file to output file, removing spaces
- std::remove_copy_if(std::istreambuf_iterator<wchar_t>(inFile), {}, std::ostreambuf_iterator<wchar_t>(outFile), [](wchar_t c) {
- return c == L' ';
- });
- //Close the input file
- inFile.close();
- //Close the output file
- outFile.close();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement