Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/heyfoz/cpp-string-manip-read-write
- Owner: heyfoz
- License: mit
- Created: 2022-11-13T07:44:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-13T17:28:16.000Z (about 2 years ago)
- Last Synced: 2024-09-12T00:12:58.895Z (4 months ago)
- Topics: cpp, csv, string, txt-files
- Language: C++
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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