簡體   English   中英

錯誤:沒有匹配函數可調用'isupper(std :: string&)'|

[英]error: no matching function for call to 'isupper(std::string&)'|

誰能向我解釋一下如何找到字符串單詞的大寫和小寫字母? 我需要知道單詞是說“魚”,“魚”,“魚”還是“魚”。 到目前為止,這是我的代碼:

#include <iostream>
#include <string>
#include <cctype>
#include <fstream>
#include <sstream>
#include <locale>

using namespace std;

void
usage(char *progname, string msg){
    cerr << "Error: " << msg << endl;
    cerr << "Usage is: " << progname << " [filename]" << endl;
    cerr << " specifying filename reads from that file; no filename reads standard input" << endl;
}
int capitalization(string word){
    for(int i = 0; i <= word.length(); i++){

    }

}
int main(int argc, char *argv[]){
    string adj;
    string file;
    string line;
    string articles[14] = {"a","A","an","aN","An","AN","the","The","tHe","thE","THe","tHE","ThE","THE"};
    ifstream rfile;
    cin >> adj;
    cin >> file;
    rfile.open(file.c_str());
    if(rfile.fail()){
        cerr << "Error while attempting to open the file." << endl;
        return 0;
    }
    string::size_type pos;
    string word;
    string words[1024];
    while(getline(rfile,line,'\n')){
        istringstream iss(line);
        for(int i = 0; i <= line.length(); i++){
            iss >> word;
            words[i] = word;
            for(int j = 0; j <= 14; j++){
                if(word == articles[j]){
                    string article = word;
                    iss >> word;
                    pos = line.find(article);
                    cout << pos << endl;
                    capitalization(word);
                }
            }
        }
    }
}

我曾嘗試通過if語句和isupper / islower來弄清楚大寫字母,但是很快我發現那是行不通的。 謝謝你的幫助。

isupper / islower函數采用單個字符。 您應該能夠遍歷字符串中的字符並檢查大小寫,如下所示:

for (int i = 0; i < word.length(); i++) {
    if (isupper(word[i])) cout << word[i] << " is an uppercase letter!" << endl;
    else if (islower(word[i])) cout << word[i] << " is a lowercase letter!" << endl;
    else cout << word[i] << " is not a letter!" << endl;
}

當然,在每種情況下,您都可以將cout語句替換為要執行的操作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM