Fixing the || bug, refactoring the expression and commenting gives this:

use strict; use warnings; my $A = -4; my $w = 500; my $re = qr / ^\s* #Start of line followed by any amount of white space \Q$A\E #Litteral contents of $A \s* #Any amount of white space \*? #Optional * \s*cos #Any amount of white space followed by cos \s* #Any amount of white space ( #Start a capture group \s #At least one white space character \Q$w\E #Litteral contents of $w \s*t #Any amount of white space followed by t | #Match either expression (i.e. - with or without brackets) \(\s* #( followed by any amount of white space \Q$w\E #Litteral contents of $w \s*t #Any amount of white space followed by t \s*\) #Any amount of white space followed by ) ) #End of capture group \s+A #At least one white space character followed by A \s*$ /x; while (<DATA>) { print "Match: $_" if $_ =~ $re; } __DATA__ -4cos 500t A -4 cos 500t A -4*cos 500t A -4*cos(500t) A

Perl is Huffman encoded by design.

In reply to Re: is there an easy way to dumb down this regular expression for me? by GrandFather
in thread is there an easy way to dumb down this regular expression for me? by moltar512

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.