Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/heyfoz/cpp-string-manip-read-write

The String Manipulator Read/Write Program (C++) reads a .txt file containing a list of fake personal data, such as names, addresses, etc. Lines of the file are changed to comma separated values (CSV) format. Finally, a .txt file is written using the newly formatted CSV data.
https://github.com/heyfoz/cpp-string-manip-read-write

cpp csv string txt-files

Last synced: about 1 month ago
JSON representation

The String Manipulator Read/Write Program (C++) reads a .txt file containing a list of fake personal data, such as names, addresses, etc. Lines of the file are changed to comma separated values (CSV) format. Finally, a .txt file is written using the newly formatted CSV data.

Awesome Lists containing this project

README

        

# cpp_string_manip_read_write
The String Manipulator Read/Write Program (C++) reads a .txt file containing a list of fake personal data, such as names, addresses, etc. Lines of the file are changed to comma separated values (CSV) format. Finally, a .txt file is written using the newly formatted CSV data.

cout is utilized to print to the console, while an fstream object defined as fout is used to print to the .txt file.

Link to .cpp file: String Manipulator Read/Write C++ Program