Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    if ($abc =~ /[$test]/) {   # <- LINE 11
        print "passed 1st condition\n";
    }
    
  2. or download this
    Unmatched [ before HERE mark in regex m/[ << HERE ]/ at D:\try3.pl lin
    +e 11.
    
  3. or download this
    use strict;
    use warnings;
    ...
    #if ($abc =~ /[$test]/) {   # <- LINE 11
        print "passed 1st condition\n";
    }
    
  4. or download this
    Unmatched [ before HERE mark in regex m/[ << HERE ]/ at D:\try3.pl lin
    +e 7.