Help for this page

Select Code to Download


  1. or download this
    my $text = lc($text);
    
  2. or download this
    my $result;
    my $text = lc($text);
    my @words = split(/\s+/,$text);
    foreach(@words){ $result .= ucfirst($_)." "; }