std::match_results<BidirIt,Alloc>::prefix
< cpp | regex | match results
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