1. I want to spread my regexp described using qr over multiple lines.
  2. Also I remember that there was some syntax for putting modifiers into a precompiled string using ? but forgot where I saw it. I want to add i and x to the regexp below.
  3. Does anyone know why this regexp appears to be matching but I am not getting any output in $1 $2 $3, etc?

    package Regexp; use strict; use vars qw($file_re); my $underscore = '_'; my $non_dot = '[^.]'; my $dot = '[.]'; $file_re = qr/((nonconsolidated|other)$underscore)?(faq|organization|literature +|contact|service)$underscore($non_dot+)${dot}xls/ ; 1; use Regexp; use strict; my @file = qw( Organization_DOT.xls.txt other_Service_FDNY.xls.txt nonconsolidated_FAQ_NYPD.xls.txt ); for (@file) { warn $_; if (/$Regexp::file_re/i) { warn "$1 $2 $3 $4"; warn $&; } else { warn 'AaaaaaaH'; } }

update (broquaint): added ending </ol> tag


In reply to [perlre] using qr - help needed by princepawn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.