User Tools

Site Tools


kurs:plz.pl
use strict;
use warnings;

my $plz = $ARGV[0];

if ($plz =~ /^A[- ]{0,1}[1-9]\d{3}$/) {
   printf "%s ist eine PLZ\n", $plz;
} else {
   printf "%s ist KEINE PLZ\n", $plz;
} 
kurs/plz.pl.txt · Last modified: 2014/09/10 21:22 (external edit)