我有一个名为aisha的文本文件

This is a new file I did it for mediu.
Its about Removing stopwords fRom the file
and apply casefolding to it
I Tried doing that many Times
and finally now I could do

我做了一段代码来读取该文本文件并将其保存到数组中,然后将一些字符转换为小写
但是我想要使代码将文件读取为字符串而不是char
char myArray[200];

成为
`string myArray[200];`

我想我可以使用函数tolower()和字符串std来做到这一点
插入了我使用的长代码
但我不知道如何将我的代码更改为使用该功能的代码

我的代码是
#include <iostream>
#include <string>
#include <fstream>
#include<ctype.h>
int main()
{
    using namespace std;

    ifstream file("aisha.txt");
    if(file.is_open())
    {
        file >> std::noskipws;
         char myArray[200];

        for(int i = 0; i < 200; ++i)
        {


            cout<<"i";
            if (myArray[i]=='A')
            cout<<"a";
            if (myArray[i]=='T')
            cout<<"t";
            if (myArray[i]=='R')
            cout<<"r";
            else
            if (myArray[i]!='I' && myArray[i]!='T' && myArray[i]!='R'&& myArray[i]!='A')
            cout<<myArray[i];
            }
         file.close();

        }

system("PAUSE");
return 0;
}

我在这个网站上看到了那个解决方案
但我无法将其应用于我的代码
#include <boost/algorithm/string.hpp>

std::string str = "wHatEver";
boost::to_lower(str);

Otherwise, you may use std::transform:

std::string str = "wHatEver";
std::transform(str.begin(), str.end(), str.begin(), ::tolower);

最佳答案

以下代码可以解决您的问题:

#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <string>
#include <cctype>
#include <algorithm>
#include <iterator>

using namespace std;

int main(int argc, char **argv) {
    ifstream ifs("file");
    ostringstream oss;
    char c;
    while(true)     {
            c = ifs.get();
            if(ifs.good())
                    oss.put(c);
            else
                    break;
    }
    string s = oss.str();
    transform(s.begin(), s.end(), ostream_iterator<char>(cout), ::tolower);
    return 0;
}

关于c++ - 使用C++中的tolower()函数将字符串转换为小写字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20309887/

10-11 23:09
查看更多