http://qs321.pair.com?node_id=11119446


in reply to Re: Mojo::DOM parsing question
in thread Mojo::DOM parsing question

Thanks very much Marto! So I can understand does the > p specify the text between the <p> and </p> and the after the 'div.abstract content'? Thanks!!

2020-07-21 Athanasius added code tags.

Replies are listed 'Best First'.
Re^3: Mojo::DOM parsing question
by marto (Cardinal) on Jul 17, 2020 at 08:02 UTC

    This is just a CSS selector

    $dom->find('div.abstract-content > p')->each

    Here we are doing a search to find each div, with class abstract-content which has a child <p> tag.

    MDN has a nice section on, CSS Selectors, and plenty of other resources too. To quote Child combinator:

    "The child combinator (>) is placed between two CSS selectors. It matches only those elements matched by the second selector that are the direct children of elements matched by the first."

    The MDN is linked to in the basics section of the overall Mojo documentation, https://mojolicious.org/perldoc. If you have any other questions let me know.