How To Force Getopt::Long To Be Case Sensitive in Perl

Author: , March 19th, 2014

How To Make Entire Sentences Initial Caps In Perl or PHP

Author: , November 23rd, 2010

Perl: $text =~ s/(\w+)/\u\L$1/g; PHP: $text = ucwords(strtolower($text))

How to Ignore Case During Searches in VIM

Author: , September 29th, 2009

To ignore case in the searches, enter the following command: :set ignorecase This command can be abbreviated as: :set ic To turn off this feature, use: :set noignorecase This command can be abbreviated as: :set noic