Yikes ! This gave me an opportunity to learn a bit about debuggering regex.
The pragma use re 'debug' will tell you more than you ever thought you might have wanted to know about the regex being processed.
The problem I found was that the 'colts' html contains:
<td class="qty" style="width: 7%;">
where your regex was looking for:
<td class="qty">
Because the regex is littered with
.*?, there is lots of scope for backtracking. As far as I can see:
- first it backtracks to (.+?)</a> and goes screaming forward trying to find another </a>;...
- ...which it finds, but the next <td class="qty" style...> also fails...
- ...so, when there are no more </a>; to try, it backtracks to .*?>(.+?)</a>...
- ...I started to lose the will to live at this point, but observe that there are five earlier .*? available to backtrack to...
I doubt that this is an infinite loop. But I haven't the patience to establish one way or the other.
Not sure what to suggest here... Where possible I would replace .*? by, for example, [^<]*? -- which limits the scope for backtracking. There is other regex magic to limit backtracking, but I'm not familiar with it.
However, the big problem I see is that you can never be sure whether your regex has failed because there is no more data of interest, or because it's not recognising a small variation in format. Do you have a drawing board ?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.