⭐ in reply to What is the best way to capitalize a string?
$string = uc($string); [download]
$string =~ tr/a-z/A-Z/; [download]