How To Force Getopt::Long To Be Case Sensitive in Perl
erics, March 19th, 2014
1 |
use Getopt::Long qw(:config no_ignore_case); |
1 |
use Getopt::Long qw(:config no_ignore_case); |
Perl: $text =~ s/(\w+)/\u\L$1/g; PHP: $text = ucwords(strtolower($text))
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