-
Notifications
You must be signed in to change notification settings - Fork 0
/
bolum14_6.tex
97 lines (82 loc) · 2.44 KB
/
bolum14_6.tex
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
\documentclass[22pt]{article}
\usepackage[turkish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\usepackage{listings}
\setlength{\columnsep}{3cm}
\begin{document}
\textbf{14.6 Düzenli İfadeler İle Beyan edilen ya da Yinelenen Tanımlayıcıları Filtreleme}
\\
Tanımlayıcıları filtrelemek için regexp işlevselliği kullanan aşağıdaki SmPL dosyasını düşünürsek, foo ile başlayan ya da biten,
\\
\begin{multicols*}{2}
\begin{lstlisting}
@anyid@
type t;
identifier id;
@@
t id () {...}
@script:python@
x << anyid.id;
@@
print "Identifier: %s" %x
@contains@
type t;
identifier foo =~ ".*foo";
@@
t foo() {...}
@script:python@
x << contains.foo;
@@
print "Contains foo: %s" %x
\end{lstlisting}
\columnbreak
\begin{lstlisting}
@endsby@
type t;
identifier foo =~ ".*foo$";
@@
t foo () {...}
@script:python@
x << endsby.foo;
@@
print "Ends by foo: %s" %x
@beginsby@
type t;
identifier foo =~ "^foo";
@@
t foo () {...}
@script:python@
x << beginsby.foo;
@@
print "Begins by foo: %s" %x
\end{lstlisting}
\end{multicols*}
ve sol aşağıdaki C programında tanımlanan foo, bar, foobar, barfoobar fonksiyonlarından sağdaki sonuçları alırsınız.
\\
\begin{multicols*}{2}
\begin{lstlisting}
int foo () { return 0; }
int bar () { return 0; }
int foobar () { return 0; }
int barfoobar () { return 0; }
int barfoo () { return 0; }
\end{lstlisting}
\columnbreak
\begin{lstlisting}
Identifier: foo
Identifier: bar
Identifier: foobar
Identifier: barfoobar
Identifier: barfoo
Contains foo: foo
Contains foo: foobar
Contains foo: barfoobar
Contains foo: barfoo
Ends by foo: foo
Ends by foo: barfoo
Begins by foo: foo
Begins by foo: foobar
\end{lstlisting}
\end{multicols*}
\end{document}