LinuXelite
Programmer
$ti = "bon mixte CasE";
#s/.*/\U&/;
#s/^(\w)/U($1)/e;
#$ti =~ s//\U$1\E/g;
$ti =~ s/(\b)(\w)/\U\2/g;
print "\n:\t$ti\n";
none of these worked...
It changed the first letter of each word.
I dont quite get the regular expression yet.
#s/.*/\U&/;
#s/^(\w)/U($1)/e;
#$ti =~ s//\U$1\E/g;
$ti =~ s/(\b)(\w)/\U\2/g;
print "\n:\t$ti\n";
none of these worked...
It changed the first letter of each word.
I dont quite get the regular expression yet.