git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@224658 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			37 lines
		
	
	
		
			950 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			950 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is dual licensed under the MIT and the University of Illinois Open
 | 
						|
// Source Licenses. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// <regex>
 | 
						|
 | 
						|
// class match_results<BidirectionalIterator, Allocator>
 | 
						|
 | 
						|
// string_type str(size_type sub = 0) const;
 | 
						|
 | 
						|
#include <regex>
 | 
						|
#include <cassert>
 | 
						|
 | 
						|
void
 | 
						|
test()
 | 
						|
{
 | 
						|
    std::match_results<const char*> m;
 | 
						|
    const char s[] = "abcdefghijk";
 | 
						|
    assert(std::regex_search(s, m, std::regex("cd((e)fg)hi")));
 | 
						|
    assert(m.str() == std::string(m[0]));
 | 
						|
    assert(m.str(0) == std::string(m[0]));
 | 
						|
    assert(m.str(1) == std::string(m[1]));
 | 
						|
    assert(m.str(2) == std::string(m[2]));
 | 
						|
    assert(m.str(3) == std::string(m[3]));
 | 
						|
    assert(m.str(4) == std::string(m[4]));
 | 
						|
}
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    test();
 | 
						|
}
 |