1 2 3 4 5 6 7 8 9
$tags[0] = lc($tags[0]); print Dumper(@tags)."\n"; if ($tags[0] eq '//'){ writeKV($fh_out,'highway','street_lamp'); exit 0; }elsif ($tags[0] eq '/none'){ writeKV($fh_out,'highway','street_lamp'); writeKV($fh_out,'ref','none');
1 2 3 4 5 6 7 8 9 10 11 12 13 14
$tags[0] = lc($tags[0]); print Dumper(@tags)."\n"; if ($tags[0] eq '//'){ # sind zwei(!) // drin writeKV($fh_out,'highway','street_lamp'); exit 0; } elsif ($tags[0] eq '/none'){ # ist /none drin writeKV($fh_out,'highway','street_lamp'); writeKV($fh_out,'ref','none'); } elsif ($tags[0] =~ /\/\[\d+\]/) { # falls /[12345670] drin # Code für /mit_Ziffern }
QuoteWas bedeutet: "klappt nicht" genau? Erklärs uns bitte.Jetzt habe ich eine If-Abfrage die auf diese Werte prüfen soll - aber es klappt nicht.