簡體   English   中英

在讀取文件時如何跳過空格C ++

[英]How to skip blank spaces when reading in a file c++

這是確切輸入文件的代碼共享鏈接: https : //codeshare.io/5DBkgY

好的,如您所見,在8和ROD之間有2條空行(或制表符)。 我該如何跳過並繼續該程序? 我正在嘗試將每一行放入3個向量中(因此將鍵,燈和桿放入一個向量中,等等)。 這是我的代碼(但它不會跳過空白行):

#include <string>
#include <iostream>
#include <sstream>
#include <vector>
#include <fstream>
using namespace std;

int main() {
    ifstream objFile;
    string inputName;
    string outputName;
    string header;
    cout << "Enter image file name: "; 
    cin >> inputName;
    objFile.open(inputName);
    string name;
    vector<string> name2;
    string description;
    vector<string> description2;
    string initialLocation;
    vector<string> initialLocation2;
    string line;


    if(objFile) {
        while(!objFile.eof()){
                getline(objFile, line);
                name = line;
                name2.push_back(name);
                getline(objFile, line);
                description = line;
                description2.push_back(description);
                getline(objFile, line);
                initialLocation = line;
                initialLocation2.push_back(initialLocation);

             } else {
        cout << "not working" << endl;
    }

    for (std::vector<string>::const_iterator i = name2.begin(); i != name2.end(); ++i)
       std::cout << *i << ' ';
   for (std::vector<string>::const_iterator i = description2.begin(); i != description2.end(); ++i)
       std::cout << *i << ' ';
    for (std::vector<string>::const_iterator i = initialLocation2.begin(); i != initialLocation2.end(); ++i)
        std::cout << *i << ' ';
#include <cstddef>  // std::size_t
#include <cctype>   // std::isspace()
#include <string>
#include <vector>
#include <fstream>
#include <iostream>

bool is_empty(std::string const &str)
{
    for (auto const &ch : str)
        if (!std::isspace(static_cast<char unsigned>(ch)))
            return false;
    return true;
}

int main()
{
    std::cout << "Enter image file name: ";
    std::string filename;
    std::getline(std::cin, filename);    // at least on Windows paths containing whitespace
                                         // are valid.
    std::ifstream obj_file{ filename };  // define variables as close to where they're used
                                         // as possible and use the ctors for initialization.
    if (!obj_file.is_open()) {           // *)
        std::cerr << "Couldn't open \"" << filename << "\" for reading :(\n\n";
        return EXIT_FAILURE;
    }

    std::vector<std::string> name;
    std::vector<std::string> description;
    std::vector<std::string> initial_location;
    std::string line;

    std::vector<std::string> *destinations[] = { &name, &description, &initial_location };

    for (std::size_t i{}; std::getline(obj_file, line); ++i) {
        if (is_empty(line)) {  // if line only consists of whitespace
            --i;
            continue;  // skip it.
        }

        destinations[i % std::size(destinations)]->push_back(line);
    }

    for (auto const &s : name)
        std::cout << s << '\n';
    for (auto const &s : description)
        std::cout << s << '\n';
    for (auto const &s : initial_location)
        std::cout << s << '\n';
}

... initial_location看起來像整數。

*)如果發生不好的情況,最好提早退出。 代替

if (obj_file) {
    // do stuff
}
else {
    // exit
}

- >

if(!obj_file)
    // exit

// do stuff

使您的代碼更易於閱讀,並且大部分部分都消除了一種縮進。

暫無
暫無

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

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