Help for this page

Select Code to Download


  1. or download this
    while(<>){
        if(/\.\s+([A-Z]+)/){
            print "$1 is capitalized\n";
        }
    }
    
  2. or download this
    if ( /\.\s+(\w+)/ and $1 eq ucfirst($1) ) {
        print "That'un's Ok", $/;
    }