OK, thanks again for the modified script. Way better than what I have. I did some research and figured out that the lotame info returned was actually in the html files. Here's the section that was extracted from:

</script> <script> /** * Trigger the backfill event with lotame params * @param lotameInfo * @returns no return */ var logBackfillEvent = function (lotameInfo) { setTimeout(function () { if (typeof _Anemone === "object") { payload = {}; payload.pl_ltmedata = {}; payload.presentation = {"count": 0}; payload.provider = {}; payload.pl_bfj = JSON.stringify(payload); payload.pl_ltmedata = lotameInfo; payload.pl_ltmedata = JSON.stringify(lotameInfo); payload['anxi'] = JSUtil.defaultVal(_AnemoneParams2.eventId, ''); _Anemone.logEvent('BackFill', payload); } }, 0); } /** * Read the lotame cookie * If lotame cookie not exist then make a request for the Lotame Audien +ce Extraction async call * Drop the lotame cookie * Trigger the backfill with lotame params * @param e * @param t * @param id */

I'm not sure why the above values were returned as I don't see any keywords in there. Maybe something is close enough that it's pulling it. I'll have to take a closer look. Maybe I need to do an exact match. I also am still having trouble on search for two words at a time. I'll keep trying. Any insight you have would be greatly appreciated.


In reply to Re^3: Perl Array Question, combining HTML::HeadParser and regex by Anonymous Monk
in thread Perl Array Question, combining HTML::HeadParser and regex 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.