请注意,在 Qt5 QRegExp != QRegularExpression 中,我对 QRegExp 更加熟悉。也就是说,我看不到用 QRegularExpression 或 QRegularExpression::match() 做你想做的事情的方法。
我会改为使用QString::indexOf向前搜索,使用QString::lastIndexOf向后搜索。如果您只想找到偏移量,您可以使用 QRegExp 或 QRegularExpression 来执行此操作。
例如,
int pos = 8;
QString text = "hello world hello";
QRegularExpression exp("hello");
int bwd = text.lastIndexOf(exp, pos); //bwd = 0
int fwd = text.indexOf(exp, pos); //fwd = 12
//"hello world hello"
// ^ ^ ^
//bwd pos fwd
但是,您还想使用捕获的文本,而不仅仅是知道它在哪里。这就是 QRegularExpression 似乎失败的地方。据我所知,在调用 QString::lastIndexOf() QRegularExpress 之后没有 lastMatch() 来检索匹配的字符串。
但是,如果您改用 QRegExp,则可以这样做:
int pos = 8;
QString text = "hello world hello";
QRegExp exp("hello");
int bwd = text.lastIndexOf(exp, pos); //bwd = 0
int fwd = text.indexOf(exp, pos); //fwd = 12
//"hello world hello"
// ^ ^ ^
//bwd pos fwd
int length = exp.cap(0).size(); //6... exp.cap(0) == "hello"
//or, alternatively
length = exp.matchedLength(); //6
您传递给 QString 方法的 QRegExp 对象将使用捕获的字符串进行更新,然后您可以使用和操作这些字符串。我无法想象他们忘记使用 QRegularExpression 来做这件事,但看起来他们可能忘记了。