代码拉取完成,页面将自动刷新
// Copyright 2008 The RE2 Authors. All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include <stdio.h>
#include <re2/filtered_re2.h>
#include <re2/re2.h>
int main() {
re2::FilteredRE2 f;
int id;
f.Add("a.*b.*c", RE2::DefaultOptions, &id);
std::vector<std::string> v;
f.Compile(&v);
std::vector<int> ids;
f.FirstMatch("abbccc", ids);
int n;
if (RE2::FullMatch("axbyc", "a.*b.*c") &&
RE2::PartialMatch("foo123bar", "(\\d+)", &n) && n == 123) {
printf("PASS\n");
return 0;
}
printf("FAIL\n");
return 2;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。