xref: /minix3/tests/lib/libc/regex/data/anchor.in (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# anchoring and REG_NEWLINE
2*11be35a1SLionel Sambuc^abc$		&	abc	abc
3*11be35a1SLionel Sambuca^b		-	a^b
4*11be35a1SLionel Sambuca^b		b	a^b	a^b
5*11be35a1SLionel Sambuca$b		-	a$b
6*11be35a1SLionel Sambuca$b		b	a$b	a$b
7*11be35a1SLionel Sambuc^		&	abc	@abc
8*11be35a1SLionel Sambuc$		&	abc	@
9*11be35a1SLionel Sambuc^$		&	""	@
10*11be35a1SLionel Sambuc$^		-	""	@
11*11be35a1SLionel Sambuc\($\)\(^\)	b	""	@
12*11be35a1SLionel Sambuc# stop retching, those are legitimate (although disgusting)
13*11be35a1SLionel Sambuc^^		-	""	@
14*11be35a1SLionel Sambuc$$		-	""	@
15*11be35a1SLionel Sambucb$		&	abNc
16*11be35a1SLionel Sambucb$		&n	abNc	b
17*11be35a1SLionel Sambuc^b$		&	aNbNc
18*11be35a1SLionel Sambuc^b$		&n	aNbNc	b
19*11be35a1SLionel Sambuc^$		&n	aNNb	@Nb
20*11be35a1SLionel Sambuc^$		n	abc
21*11be35a1SLionel Sambuc^$		n	abcN	@
22*11be35a1SLionel Sambuc$^		n	aNNb	@Nb
23*11be35a1SLionel Sambuc\($\)\(^\)	bn	aNNb	@Nb
24*11be35a1SLionel Sambuc^^		n^	aNNb	@Nb
25*11be35a1SLionel Sambuc$$		n	aNNb	@NN
26*11be35a1SLionel Sambuc^a		^	a
27*11be35a1SLionel Sambuca$		$	a
28*11be35a1SLionel Sambuc^a		^n	aNb
29*11be35a1SLionel Sambuc^b		^n	aNb	b
30*11be35a1SLionel Sambuca$		$n	bNa
31*11be35a1SLionel Sambucb$		$n	bNa	b
32*11be35a1SLionel Sambuca*(^b$)c*	-	b	b
33*11be35a1SLionel Sambuca*\(^b$\)c*	b	b	b
34