55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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>
 | 
						|
 | 
						|
// const_reference operator[](size_type n) const;
 | 
						|
 | 
						|
#include <regex>
 | 
						|
#include <cassert>
 | 
						|
#include "test_macros.h"
 | 
						|
 | 
						|
void
 | 
						|
test(std::regex_constants::syntax_option_type syntax)
 | 
						|
{
 | 
						|
    std::match_results<const char*> m;
 | 
						|
    const char s[] = "abcdefghijk";
 | 
						|
    assert(std::regex_search(s, m, std::regex("cd((e)fg)hi|(z)", syntax)));
 | 
						|
 | 
						|
    assert(m.size() == 4);
 | 
						|
 | 
						|
    assert(m[0].first == s+2);
 | 
						|
    assert(m[0].second == s+9);
 | 
						|
    assert(m[0].matched == true);
 | 
						|
 | 
						|
    assert(m[1].first == s+4);
 | 
						|
    assert(m[1].second == s+7);
 | 
						|
    assert(m[1].matched == true);
 | 
						|
 | 
						|
    assert(m[2].first == s+4);
 | 
						|
    assert(m[2].second == s+5);
 | 
						|
    assert(m[2].matched == true);
 | 
						|
 | 
						|
    assert(m[3].first == s+11);
 | 
						|
    assert(m[3].second == s+11);
 | 
						|
    assert(m[3].matched == false);
 | 
						|
 | 
						|
    assert(m[4].first == s+11);
 | 
						|
    assert(m[4].second == s+11);
 | 
						|
    assert(m[4].matched == false);
 | 
						|
}
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    test(std::regex_constants::ECMAScript);
 | 
						|
    test(std::regex_constants::extended);
 | 
						|
}
 |