C++ 将string转换成全小写


#include 
#include 
#include 

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

void main()
{
        std::string str;
	str.assign("Hello World!");

	std::transform(str.begin(),str.end(),str.begin(),tolower); // or 'toupper'.

	cout<

 

你可能感兴趣的:(c++)