How do I detect one or more uppercase characters in a string? Been trying things like this:
if ($str =~ m/[A-Z]/) { print "str contains an uc char\n" } [download]
In reply to Simple Regex Question by gibsonca