Hi!
$text = "a";
$text2 = "Auto";if( $text =~ /$text2/i){
»» print "Gleich";
}
Vorsicht! Wenn text2 = "a" ist und text = "Auto" wuerde hier auch "Gleich" rauskommen. Deshalb muesste es heissen
if ($text =~ /^$text2$/i) { ...
Allerdings finde ich Franks Methode sowieso besser.
Calocybe