Help for this page

Select Code to Download


  1. or download this
        sub ucwords {
            join $_[1], map ucfirst lc, split /\Q$_[1]\E/, $_[0], -1;
        }
    
  2. or download this
        print ucwords("BATCH_USER_INFO", "_");