Leser: 3
|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/perl
$xziffern = 0;
$xzeilen = 0;
print "Geben Sie einen Satz ein:\n";
while(defined($y=getc STDIN)) {
$xziffern += 1;
if ($y eq "\n") {
($xziffern -= 1)
}
if ($y eq "\n") {
($xzeilen += 1)
}
}
print "------------------------------------------\n";
print "Es wurden soviele Ziffern eingegeben:$xziffern\n";
print "Es wurden soviele Zeilen eingegeben:$xzeilen\n";
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
#! /usr/bin/perl
$ibuchstaben=0;
$iword=0;
$bwort=0;
$inewlines=0;
while(defined($c=getc STDIN))
{
print $c;
if($c eq "\n")
{
++$inewlines;
if($bwort == 1)
{
$bwort=0;
++$iword;
}
}
elsif($c eq " ")
{
if($bwort == 1)
{
$bwort=0;
++$iword;
print "\n";
}
}
elsif($c eq ".")
{
if($bwort == 1)
{
$bwort=0;
++$iword;
print "\n";
}
}
}
elsif($c eq ",")
{
if($bwort == 1)
{
$bwort=0;
++$iword;
print "\n";
}
}
elsif($c eq "?")
{
if($bwort == 1)
{
$bwort=0;
++$iword;
print "\n";
}
}
elsif($c eq "!")
{
if($bwort == 1)
{
$bwort=0;
++$iword;
print "\n";
}
}
else
{
++$ibuchstaben;
$bwort=1;
}
}
print $ibuchstaben;
print "\n";
print $iword;
print "\n";
print $inewlines;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
print "Geben Sie einen Satz ein:\n";
my $string;
{
local $/;
$string = <STDIN>;
}
print "------------------------------------------\n";
print "Es wurden soviele Ziffern eingegeben:";
print( scalar grep { $_ ne "\n" } split "", $string );
print "\n";
print "Es wurden soviele Zeilen eingegeben:";
print( scalar split "\n", $string );
print "\n";
print "Es wurden so viele Worte eingegeben:";
print( scalar split " ", $string );
print "\n";
print "Alle eingegebenen worte sind:\n";
print join "\n", split " ", $string;
QuoteSchreiben Sie ein Programm was alle Worte im Eingabetext untereinander ausgibt !
genauso suche ich noch wie wie ich ihm sagen kann, das er z.B. große Buchstaben in kleine Buchstaben macht
Quotelc EXPR
lc Returns a lowercased version of EXPR. This is the
internal function implementing the "\L" escape in
double-quoted strings. Respects current LC_CTYPE
locale if "use locale" in force. See perllocale and
perlunicode for more details about locale and
Unicode support.
If EXPR is omitted, uses $_.
split /\s+/
Quote\n\nwc - print the number of newlines, words, and bytes in files
C:\wampp1\perl\bin>perl -le "$var = 'dies sit ein stringvvvvvv test'; $anz = () = $var =~ /\b(.+?)\b/g; print $anz"
|< 1 2 >| | 11 Einträge, 2 Seiten |