命名空间
变体
操作

std::match_results<BidirIt,Alloc>::prefix

来自 cppreference.com
< cpp‎ | regex‎ | 匹配结果
const_reference prefix() const;
(自 C++11 起)

获取对表示目标序列中从目标序列开头到正则表达式整个匹配开头的部分的 std::sub_match 对象的引用。

除非 ready() == true,否则行为未定义。

内容

[编辑] 参数

(无)

[编辑] 返回值

对未匹配前缀的引用。

[编辑] 示例

#include <iostream>
#include <regex>
#include <string>
 
int main()
{
    std::regex re("a(a)*b");
    std::string target("baaaby");
    std::smatch sm;
 
    std::regex_search(target, sm, re);
    std::cout << sm.prefix().str() << '\n';
}

输出

b

[编辑] 另请参阅

返回从完整匹配结尾到目标序列结尾之间的子序列
(公共成员函数) [编辑]