Thread Komplexe Datenstruktur in Perl Code extrahieren (4 answers)
Opened by Gast at 2008-11-05 11:36

Gast Gast
 2008-11-05 13:25
#115989 #115989
Danke für den Tipp, und ich hab mich immer gefragt was der Output soll.. der Output ist nun folgendermassen:

Code: (dl )
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
$VAR1 = {
'Check' => [
{
'name' => 'Keywords',
'config' => {
'InputFile' => './Backends/keywords.txt'
},
'attr' => {
'name' => 'Keywords',
'active' => 'true',
'type' => 'Check'
}
},
{
'name' => 'Variables',
'config' => {
'InputFile' => './Backends/variables.txt'
},
'attr' => {
'name' => 'Variables',
'active' => 'true',
'type' => 'Check'
}
}
],
'Report' => [
{
'name' => 'Excel',
'config' => {
'Picture' => 'pic.png',
'OutputDirectory' => './Output/'
},
'attr' => {
'name' => 'Excel',
'active' => 'true',
'type' => 'Report'
}
}
]
};

View full thread Komplexe Datenstruktur in Perl Code extrahieren