Thread geht es noch einfacher II
(14 answers)
Opened by jan999 at 2010-01-13 19:13
Hi !
nochmal die Frage, ob auch soetwas noch einfacher geht: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 sub checkIsTagValueInclude{ my $tagvalue = shift; my $search = shift; my $result = 0; if (";$tagvalue;" =~ /\;$search\;/i){ $result = 1; }else{ $result = 0; } return ($result); }# end-checkIsTagValueInclude ... als Lerneffekt ! Gruß Jan .-) |