Help for this page

Select Code to Download


  1. or download this
    m/^"{1}[^"{1}]/
    #   ^^^   ^^^-This is wrong
    #    |
    #   This is unnecessary
    
  2. or download this
    use strict;
    use warnings;
    ...
    for (@strings) {
        say if /^"[^"]/;
    }