For example, it would be very useful to search nodes with some attributes values matching regex, e.g. ``` for node in document.find(Attr("class", Regex::new(r"^content-.*$").unwrap())) { // do something } ```