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