How to convert text in text file to uppercase in C++

1 Answer

0 votes
#include <iostream>
#include <string>
#include <fstream>
#include <algorithm>

using std::cout;
using std::endl;

int main()
{
	std::ifstream ifs("d:\\data.txt");

	std::string s((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));

	ifs.close();

	if (!isalpha(s[s.size() - 1]))
		s.pop_back();

	transform(s.begin(), s.end(), s.begin(), toupper);
	
	std::ofstream ofs("d:\\data.txt");
	ofs << s;
	ofs.close();

	return 0;
}

/*
run:

C C++
C# JAVA PHP PYTHON

*/


answered Jun 12, 2018 by avibootz

Related questions

1 answer 215 views
1 answer 141 views
1 answer 116 views
116 views asked Jan 29, 2023 by avibootz
1 answer 106 views
106 views asked Jan 29, 2023 by avibootz
1 answer 237 views
237 views asked Jul 3, 2018 by avibootz
...