mirror of
				https://gitlab.gnome.org/GNOME/libxml2.git
				synced 2025-10-30 10:45:36 +03:00 
			
		
		
		
	* xmlregexp.c: another nasty regexp case fixed. * test/regexp/ranges2 result/regexp/ranges2: added to regression suite Daniel svn path=/trunk/; revision=3658
		
			
				
	
	
		
			15 lines
		
	
	
		
			98 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			98 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| =>(a|b{0,3}){0,1}
 | |
| a
 | |
| aa
 | |
| b
 | |
| bb
 | |
| bbb
 | |
| bbbb
 | |
| ab
 | |
| ba
 | |
| =>([0-9]{0,3}|([0-9]{0}|[0-9]{0,3})){0,3}
 | |
| 0
 | |
| 00
 | |
| 123
 | |
| abc
 |