Qt 正则表达式不匹配

发布于 2024-12-17 16:49:42 字数 427 浏览 1 评论 0原文

Qt 的正则表达式(C++)没有按我的预期工作。例如,在以下行中(空格作为句号)

.....mRNA............complement(join(<85666..86403,86539..>86727))

“mRNA”不与以下内容匹配:

QRegExp rxItem("^\\s{5}(\\w+)") ;

但与以下内容匹配:

QRegExp rxItem("\\s{4}(\\w+)") ;

因此,看起来好像该行的开头和第一个空格由于某种原因未被识别。我查看了 QRegExp 的 Qt 文档,据我所知,“^”表示行的开头,而 \s 是 Perl 中的空格。

有什么想法吗?

干杯

Qt's regex (C++) is not working as I expect. For example, in the following line (spaces as full stops)

.....mRNA............complement(join(<85666..86403,86539..>86727))

"mRNA" is not matched by:

QRegExp rxItem("^\\s{5}(\\w+)") ;

But is matched by the following:

QRegExp rxItem("\\s{4}(\\w+)") ;

So it looks as if the start of the line and the first space is not being recognised for some reason. I checked-out the Qt documentation for QRegExp and as far as I can tell "^" signifies the start of a line and \s is space as in Perl.

Any ideas?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半寸时光 2024-12-24 16:49:42

以下代码:

#include <QtCore/QRegExp>
#include <QtCore/QString>
#include <QtCore/QDebug>

int main(int argc, char *argv[])
{
    QString test = "     mRNA            complement(join(<85666  86403,86539  >86727))";
    QRegExp rxItem( "^\\s{5}(\\w+)" );

    if( rxItem.indexIn( test ) != -1 )
    {
        qDebug() << "Matched" << rxItem.cap( 1 );
    }
    else
    {
        qDebug() << "No match";
    }

    return 0;
}

显示

Matched "mRNA"

所以它似乎可以工作。您是否可能将 indexIn 返回的结果 0 视为错误?

The following code:

#include <QtCore/QRegExp>
#include <QtCore/QString>
#include <QtCore/QDebug>

int main(int argc, char *argv[])
{
    QString test = "     mRNA            complement(join(<85666  86403,86539  >86727))";
    QRegExp rxItem( "^\\s{5}(\\w+)" );

    if( rxItem.indexIn( test ) != -1 )
    {
        qDebug() << "Matched" << rxItem.cap( 1 );
    }
    else
    {
        qDebug() << "No match";
    }

    return 0;
}

displays

Matched "mRNA"

So it seems to be working. Did you maybe treat a result of 0 returned by indexIn as error?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文