2010-06-30 19:22:19 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <regex>
|
|
|
|
|
|
|
|
// template <class BidirectionalIterator, class Allocator, class charT, class traits>
|
|
|
|
// bool
|
|
|
|
// regex_search(BidirectionalIterator first, BidirectionalIterator last,
|
|
|
|
// match_results<BidirectionalIterator, Allocator>& m,
|
|
|
|
// const basic_regex<charT, traits>& e,
|
|
|
|
// regex_constants::match_flag_type flags = regex_constants::match_default);
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
assert(!std::regex_search("a", m, std::regex()));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
assert(m.empty());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "a";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.empty());
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+1);
|
|
|
|
assert(m.length(0) == 1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "a");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "ab";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+2);
|
|
|
|
assert(m.length(0) == 2);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "ab");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "ab";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("ba", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
assert(m.empty());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "aab";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 2);
|
|
|
|
assert(m.position(0) == 1);
|
|
|
|
assert(m.str(0) == "ab");
|
|
|
|
}
|
2010-06-30 22:30:19 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "aab";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("ab", std::regex_constants::basic),
|
|
|
|
std::regex_constants::match_continuous));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abcd";
|
|
|
|
assert(std::regex_search(s, m, std::regex("bc", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+4);
|
|
|
|
assert(m.length(0) == 2);
|
|
|
|
assert(m.position(0) == 1);
|
|
|
|
assert(m.str(0) == "bc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
2010-07-07 21:14:52 +02:00
|
|
|
const char s[] = "abbc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab*c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
2010-06-30 22:30:19 +02:00
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
2010-07-07 21:14:52 +02:00
|
|
|
assert(!m.suffix().matched);
|
2010-06-30 22:30:19 +02:00
|
|
|
assert(m.suffix().first == m[0].second);
|
2010-07-07 21:14:52 +02:00
|
|
|
assert(m.suffix().second == s+4);
|
|
|
|
assert(m.length(0) == 4);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
2010-06-30 22:30:19 +02:00
|
|
|
}
|
2010-07-08 19:43:58 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "ababc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+5);
|
|
|
|
assert(m.length(0) == 5);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
assert(m.length(1) == 2);
|
|
|
|
assert(m.position(1) == 2);
|
|
|
|
assert(m.str(1) == "ab");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abcdefghijk";
|
|
|
|
assert(std::regex_search(s, m, std::regex("cd\\(\\(e\\)fg\\)hi",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 3);
|
|
|
|
assert(m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+std::regex_traits<char>::length(s));
|
|
|
|
assert(m.length(0) == 7);
|
|
|
|
assert(m.position(0) == 2);
|
|
|
|
assert(m.str(0) == "cdefghi");
|
|
|
|
assert(m.length(1) == 3);
|
|
|
|
assert(m.position(1) == 4);
|
|
|
|
assert(m.str(1) == "efg");
|
|
|
|
assert(m.length(2) == 1);
|
|
|
|
assert(m.position(2) == 4);
|
|
|
|
assert(m.str(2) == "e");
|
|
|
|
}
|
2010-07-09 02:15:26 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^abc", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abcd";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^abc", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+4);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "abc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "aabc";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("^abc", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("abc$", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "efabc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("abc$", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+5);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 2);
|
|
|
|
assert(m.str(0) == s+2);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "efabcg";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("abc$", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
2010-07-12 17:51:17 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "acc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "acc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+3);
|
|
|
|
assert(m.length(0) == 3);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abcdef";
|
|
|
|
assert(std::regex_search(s, m, std::regex("\\(.*\\).*", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+6);
|
|
|
|
assert(m.length(0) == 6);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
assert(m.length(1) == 6);
|
|
|
|
assert(m.position(1) == 0);
|
|
|
|
assert(m.str(1) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "bc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("\\(a*\\)*", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == s+2);
|
|
|
|
assert(m.length(0) == 0);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "");
|
|
|
|
assert(m.length(1) == 0);
|
|
|
|
assert(m.position(1) == 0);
|
|
|
|
assert(m.str(1) == "");
|
|
|
|
}
|
2010-07-12 20:16:05 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abbc";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abbbc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abbbbc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abbbbbc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adefc";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "abbbbbbc";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("ab\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adec";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("a.\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adefc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adefgc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adefghc";
|
|
|
|
assert(std::regex_search(s, m, std::regex("a.\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == sizeof(s)-1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "adefghic";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("a.\\{3,5\\}c", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "-ab,ab-";
|
|
|
|
assert(std::regex_search(s, m, std::regex("-\\(.*\\),\\1-", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == std::char_traits<char>::length(s));
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
assert(m.length(1) == 2);
|
|
|
|
assert(m.position(1) == 1);
|
|
|
|
assert(m.str(1) == "ab");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "ababbabb";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^\\(ab*\\)*\\1$", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == std::char_traits<char>::length(s));
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
assert(m.length(1) == 3);
|
|
|
|
assert(m.position(1) == 2);
|
|
|
|
assert(m.str(1) == "abb");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "ababbab";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("^\\(ab*\\)*\\1$", std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
2010-07-12 21:11:27 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "aBAbbAbB";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^\\(Ab*\\)*\\1$",
|
|
|
|
std::regex_constants::basic | std::regex_constants::icase)));
|
|
|
|
assert(m.size() == 2);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == std::char_traits<char>::length(s));
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
assert(m.length(1) == 3);
|
|
|
|
assert(m.position(1) == 2);
|
|
|
|
assert(m.str(1) == "Abb");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "aBAbbAbB";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("^\\(Ab*\\)*\\1$",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
2010-07-13 23:48:06 +02:00
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "a";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^[a]$",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == 1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "a");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "a";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^[ab]$",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == 1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == "a");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "c";
|
|
|
|
assert(std::regex_search(s, m, std::regex("^[a-f]$",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == 1);
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "g";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("^[a-f]$",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "Iraqi";
|
|
|
|
assert(std::regex_search(s, m, std::regex("q[^u]",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == 2);
|
|
|
|
assert(m.position(0) == 3);
|
|
|
|
assert(m.str(0) == "qi");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "Iraq";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("q[^u]",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "AmB";
|
|
|
|
assert(std::regex_search(s, m, std::regex("A[[:lower:]]B",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 1);
|
|
|
|
assert(!m.prefix().matched);
|
|
|
|
assert(m.prefix().first == s);
|
|
|
|
assert(m.prefix().second == m[0].first);
|
|
|
|
assert(!m.suffix().matched);
|
|
|
|
assert(m.suffix().first == m[0].second);
|
|
|
|
assert(m.suffix().second == m[0].second);
|
|
|
|
assert(m.length(0) == std::char_traits<char>::length(s));
|
|
|
|
assert(m.position(0) == 0);
|
|
|
|
assert(m.str(0) == s);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::cmatch m;
|
|
|
|
const char s[] = "AMB";
|
|
|
|
assert(!std::regex_search(s, m, std::regex("A[[:lower:]]B",
|
|
|
|
std::regex_constants::basic)));
|
|
|
|
assert(m.size() == 0);
|
|
|
|
}
|
2010-06-30 19:22:19 +02:00
|
|
|
}
|