0

ファイルから2つのQString(ValueOne、ValueTwo)を読み取りました(基本的な例にすぎません)

int main(int argc, char *argv[]) {
    QString x = ("yes " 
                 "start ValueOne end" 
                 "no" 
                 "start ValueTwo end");

   //try to read ValueOne
    QString s = "start";
    QString e = "end";
    int start = x.indexOf(s, 0, Qt::CaseInsensitive); 
    int end = x.indexOf(e, Qt::CaseInsensitive); 

    if(start != -1){ 

        QString y = x.mid(start + s.length(), (end - (start + s.length()))); 

        qDebug() << y << (start + s.length()) << (end - (start + s.length()));

    //try to read ValueTwo
    QString s2 = "start";
    QString e2 = "end";
    int start2 = x.indexOf(s2, 0, Qt::CaseInsensitive); 
    int end2 = x.indexOf(e2, Qt::CaseInsensitive); 

    if(start2 != -1){ 

        QString y2 = x.mid(start2 + s.length2(), (end2 - (start2 + s.length2()))); 

        qDebug() << y2 << (start2 + s.length2()) << (end2 - (start2 + s.length2()));
    }
}

ご覧のとおり、ソースコードは「開始」と「終了」だけでは ValueOne と ValueTwo を区別できません。これは、両方の QString::mid() メソッド (私の知る限り行ごとに進む) の開始位置が同じであるためです。および同じ長さ ( http://qt-project.org/doc/qt-4.8/qstring.html#midを参照)。したがって、文字列全体が次のような1行であるかどうかを考えました

QString x = "yes start ValueOne end no start ValueTwo end ";

QString s = "yes start" と QString s2 = "no start" の 2 つの値を区別できます。したがって、複数行の文字列を1行の文字列に変換すると解決策になりますか?どうすればこれを行うことができますか? または別のおそらくより良い解決策はありますか? 挨拶

4

2 に答える 2

2

他の質問ですでに述べたように、私はQRegExpを好みます。読みやすいようです。

最初の文字列が2n常に値であり、2番目の文字列が値である2n+1場合、モジュロ演算子を使用できます。

#include <QDebug>
#include <QString>
#include <QStringList>
#include <QRegExp>

int main()
{
    QString x = ("yes \nstart ValueOne end \nno \nstart ValueTwo end\n"
                "yes \nstart ValueThree end \nno \nstart ValueFour end ");

    QStringList y1;
    QStringList y2;

    // create regular expression
    QRegExp rx("start\\s+(.+)\\s+end\\s+", Qt::CaseInsensitive);

    // don't try to get the largest match (start ValueOne ... ValueFour end)
    // minimal match should be (start ValueOne end)
    rx.setMinimal(true);

    int pos=0;
    int i=0; // counter

    // look for possible matches
    QString match;
    while ((pos=rx.indexIn(x, pos)) != -1) {
        i+=1; // increase counter for every match
        match=rx.cap(1); // get first match in (.+)

        // use modulo to distinguish between y1/y2    
        if (i % 2) {
            y1 << match;
        } else {
            y2 << match;
        }

        pos+=rx.matchedLength();
    }

    qDebug() << "y1:" << y1;
    qDebug() << "y2:" << y2;

    return 0;
}
于 2012-03-09T07:11:20.820 に答える
1

以下のコードに似たものを使用すると、「開始」と「終了」の間のすべての文字列を見つけることができます。「開始」と「終了」の検索をループに入れ、indexOf のオフセット パラメータを使用して、最初の区切り文字の後に新しい区切り文字の検索を続けます。

int main(int argc, char *argv[]) {
    QString x = ("yes /nstart ValueOne end /nno /nstart ValueTwo end ");

    QString s = "start";
    QString e = "end";

    // Look for all the strings between "start" and "end"    
    for(int offset(0); offset < x.length(); )
    {
        // Search for "start" starts from offset
        int start = x.indexOf(s, offset, Qt::CaseInsensitive); 

        if(start < 0){
            break;
        }

        // Search for "end" starts from the position of "start"
        int end = x.indexOf(e, start, Qt::CaseInsensitive); 
        if(end < 0){
            break;
        }

        // Next search for "start" will start from the current position of "end"
        offset = end;

        QString y = x.mid(start + s.length(), (end - (start + s.length()))); 
        qDebug() << y << (start + s.length()) << (end - (start + s.length()));
    }
}
于 2012-03-09T00:28:46.937 に答える