File: testpatterns

package info (click to toggle)
flexc%2B%2B 2.17.01-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,180 kB
  • sloc: cpp: 6,467; makefile: 148; sh: 130; ansic: 18
file content (35 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
%%

    //P1:
//a+/aab

    //P2:
//a*/aaap

    //P3
//a*/aaa

    //P4
//(a|ab)+/(a|ba)+

    //P5
//(a|ab)*/(a|ba)*

    //P6
//(a|ab)+/a(a|ba)+

    //P7
//a+/(a|ab)+

    //P8
//a*/a*

    //P9
//a*/(ab)*

    //P10
//a*b*/a*

    //P11
//a*/aa+