gpt4 book ai didi

c++ - 有没有办法从 pcrecpp 获取 PREMATCH ( $`) and POSTMATCH ($' )?

转载 作者:行者123 更新时间:2023-11-30 03:11:11 25 4
gpt4 key购买 nike

有没有办法从 pcrecpp 获得 Perl 的 PREMATCH ($`) 和 POSTMATCH ($') 的 C++ 等价物?我会对指向此处的字符串、char * 或成对的 indices/startpos+length 感到满意。

StringPiece 似乎可以完成其中的一部分,但我不确定如何获得它。

在 perl 中:

$_ = "Hello world";
if (/lo\s/) {
$pre = $`; #should be "Hel"
$post = $'; #should be "world"
}

在 C++ 中我会有这样的东西:

string mystr = "Hello world"; //do I need to map this in a StringPiece?
if (pcrecpp::RE("lo\s").PartialMatch(mystr)) { //should I use Consume or FindAndConsume?
//What should I do here to get pre+post matches???
}

pcre plainjane c 似乎能够返回带有匹配项的 vector ,包括字符串的“结束”部分,因此理论上我可以提取这样的前/后变量,但这似乎需要很多工作。我喜欢 pcrecpp 界面的简单性。

建议?谢谢!

--埃里克

最佳答案

您可以使用 FullMatch 而不是 PartialMatch 并明确捕获自己的前后,例如

string pre, match, post;
RE("(.*)(lo\\s)(.*)").FullMatch("Hello world", &pre, &match, &post);

关于c++ - 有没有办法从 pcrecpp 获取 PREMATCH ( $`) and POSTMATCH ($' )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2443031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com