getElementAttributeRegExp function
Returns element
attribute with RegExp key
.
Implementation
String? getElementAttributeRegExp(Element element, RegExp key) {
for (var k in element.getAttributeNames()) {
if (key.hasMatch(k)) {
return element.getAttribute(k);
}
}
return null;
}