Help for this page

Select Code to Download


  1. or download this
    (ord > 88? uc : ()), uc
  2. or download this
    if (ord($_) > 88)
    {
         return $_;                  # 'A' -> ('A')
    ...
    {
         return uc($_), uc($_);      # 'a' -> ('A','A')
    }