The Dom Crawler Component is powerfull to parse html content, in its documentation describes basics selections (like filter('body > p')
) or more complex xpath like //span[contains(@id, "article-")]
Is it possible to fetch elements by regular expression? Maybe something like that is available: filter('body')->filter('div.*-timeLabel-*')
?