1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <regex>
11 
12 // class match_results<BidirectionalIterator, Allocator>
13 
14 // string_type str(size_type sub = 0) const;
15 
16 #include <regex>
17 #include <cassert>
18 
19 void
20 test()
21 {
22     std::match_results<const char*> m;
23     const char s[] = "abcdefghijk";
24     assert(std::regex_search(s, m, std::regex("cd((e)fg)hi")));
25     assert(m.str() == std::string(m[0]));
26     assert(m.str(0) == std::string(m[0]));
27     assert(m.str(1) == std::string(m[1]));
28     assert(m.str(2) == std::string(m[2]));
29     assert(m.str(3) == std::string(m[3]));
30     assert(m.str(4) == std::string(m[4]));
31 }
32 
33 int main()
34 {
35     test();
36 }
37