in reply to Re^3: how to extract iframes from text
in thread how to extract iframes from text

You are right. that was the dumper(line before). But it is printing just the first iframe not the others. Is there a way to put them all in an array?

Replies are listed 'Best First'.
Re^5: how to extract iframes from text
by Anonymous Monk on Apr 30, 2013 at 20:30 UTC
    The at function only finds the first element matching. So it should only return 1.

    To be able to print all iframes, According to Mojo::Dom documentation  findis what I were after, as it returns a collection that matches.

    Now I am trying to find a way to put them in an array....