#!/usr/bin/perl -wuse strict;$_ = "Case";if (/case/) { print "found\n";} else { print "not found\n";}