Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    print "  - contains whitespace 2\n" if m/^\s+$/;
    
  2. or download this
    >perl -MO=Deparse test.pl
    
    ...
    print "  - contains whitespace 2\n" if /^\s+$/;
    07_test.pl syntax OK