push(@found_items, $1) while $data =~ m#\s+((\w+\s*)+)</td>#g; matches NEARLY everything I want. However, it fails to load if a word has a hypen, like: Look-a-hyphen . It also fails if there is a set of paranthesis with numbers and/or letters in it. I need it to match all of these. A few examples of what I need to match.

This is a test This is a (test) This is a (test123) this is a (123) This-is a test
Of course my content is dynamic so it won't literally be this, but I need it to match the entire line in $1 before it finds the </td>. In reality, the optional hypens at the end are probably always going to be on the end. But if it's any easier, I guess I could match it anywhere in the string. If it's not easier, I wouldn't worry about it.

2006-04-06 Retitled by planetscape, as per Monastery guidelines
Original title: 'help with regex'


In reply to Help constructing a regex that also matches hyphens and parentheses by Anonymous Monk

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.