James-LG / Skyscraper

Rust library for scraping HTML using XPath expressions
MIT License
30 stars 3 forks source link

feat: Support the contains function #31

Closed James-LG closed 3 months ago

James-LG commented 3 months ago

Adds support for the contains(haystack, needle) function as defined by https://developer.mozilla.org/en-US/docs/Web/XPath/Functions/contains

e.g. //div[contains(text(),'select')]

Closes #29.