regex_constants icase and collate for matching a single char and for matching back references

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@108178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-07-12 19:11:27 +00:00
parent cba352d348
commit e34f17d383
2 changed files with 258 additions and 2 deletions

View File

@@ -472,4 +472,30 @@ int main()
assert(!std::regex_search(s, m, std::regex("^\\(ab*\\)*\\1$", std::regex_constants::basic)));
assert(m.size() == 0);
}
{
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);
}
}