getElementAttributeRegExp function

String? getElementAttributeRegExp(
  1. Element element,
  2. RegExp key
)

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;
}