Help for this page
#!/usr/bin/perl -w use strict; ... $chr = "this and that"; $chr =~ s/(this|that)|(\w+)/$1\U$2/g; #error reported print "$chr\n";
this AND that