my $x = "The Quick Brown Fox";
if ($x =~ /brown/) {
    print "found 'brown'\n"; #we will NOT match since 
        # Brown is not brown.
}
                
if ($x =~ /brown/i) {print "found 'brown'\n"} #does match, because /i 
        # on the end of the RegEx instructs that case is to be ignored
