2015-03-20 01:05:59 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-03-20 01:05:59 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <regex>
|
|
|
|
|
|
|
|
// match_not_bol:
|
2016-06-02 05:35:39 +08:00
|
|
|
// The first character in the sequence [first,last) shall be treated as
|
|
|
|
// though it is not at the beginning of a line, so the character ^ in the
|
2015-03-20 01:05:59 +08:00
|
|
|
// regular expression shall not match [first,first).
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
#include <cassert>
|
2016-04-27 00:24:44 +08:00
|
|
|
#include "test_macros.h"
|
2015-03-20 01:05:59 +08:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::string target = "foo";
|
|
|
|
std::regex re("^foo");
|
|
|
|
assert( std::regex_match(target, re));
|
|
|
|
assert(!std::regex_match(target, re, std::regex_constants::match_not_bol));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
std::string target = "foo";
|
|
|
|
std::regex re("foo");
|
|
|
|
assert( std::regex_match(target, re));
|
|
|
|
assert( std::regex_match(target, re, std::regex_constants::match_not_bol));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
std::string target = "fooby";
|
|
|
|
std::regex re("^foo");
|
|
|
|
assert( std::regex_search(target, re));
|
|
|
|
assert(!std::regex_search(target, re, std::regex_constants::match_not_bol));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
std::string target = "fooby";
|
|
|
|
std::regex re("foo");
|
|
|
|
assert( std::regex_search(target, re));
|
|
|
|
assert( std::regex_search(target, re, std::regex_constants::match_not_bol));
|
|
|
|
}
|
|
|
|
}
|