in reply to Implement uclast with a regex
my $string = "ACta"; $string =~ s/^(.*)(.)$/\L$1\U$2/; [download]
Dave