select_attr_contains_prefix

returns elements that have the specified attribute and the value that starts with the given prefix.

Arguments

Source


def select_attr_contains_prefix(self, attr, value):
    ret = pyNodeList()
    for node in self:
        if node.attr_contains_prefix(attr, value):
            ret.append(node)
    if len(ret) == 1: return ret[0]
    else: return ret