Thread verankern von regular expressions (10 answers)
Opened by suresh at 2011-10-13 11:08

Linuxer
 2011-10-13 11:16
#153170 #153170
User since
2006-01-27
3890 Artikel
HausmeisterIn

user image
Gerade ausprobiert:

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
$ perl t1.pl 12345
passt nicht.

$ perl t1.pl 123456
yo, das passt.

$ perl t1.pl 1234567
passt nicht.

# das Programm:
$ cat t1.pl
#!/usr/bin/perl
use strict;
use warnings;

my $value = shift @ARGV;

if ( $value =~ m/^\d{6}$/ ) {
print "yo, das passt.\n";
}
else {
print "passt nicht.\n";
}

__END__

$


Vielleicht solltest Du mal kontrollieren, was wirklich in $opt_v drin steckt...
Wie wird die Variable befüllt?
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread verankern von regular expressions