Help for this page

Select Code to Download


  1. or download this
    $_= "
    This is a paragraph
    
    here too.";
    s/(\n\w)/uc($1)/eg;
    print;
    
  2. or download this
    $_= "
    This is a paragraph
    
    here too.";
    s/(\n\w+)/uc($1)/eg;
    print;