6 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use strict;
undef $/;
my $text;
$text= <>;
while ($text=~m/Programmierung/g){
print "Das Wort Programmierung wurde gefunden.\n";
}
close (DATEI);
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
#!/usr/bin/perl
use strict;
use Tk;
my $haupt = new MainWindows;
my $links=$haupt->Frame();
$links->Label(-text=>"Eingabe:")->pack();
my $datei=$links->Entry();
$datei->pack();
$links->Label(-text=>"Ausgabe:")->pack();
my $datei=$links->Entry();
$datei->pack();
my $schalter = $links->Button(-text=> "Eingeben",
-command => \&eingeben )->pack();
my $schalter2 = $links->Button(-text=> "Speichern",
-command => \$speichern )-pack(-pady=> "20");
my $rechts =$haupt ->Frame();
$rechts->Label(-text=>"Ausgabefeld:")->pack();
my $datei=$rechts->Listbox();
$daten->pack();
$links->pack(-side->"left");
$rechts->pack(-side->"right");
MainLoop();
6 Einträge, 1 Seite |