Sample code for 30+ languages & platforms
Swift

Find XML Element where Attribute = Value

See more XML Examples

Finds an XML element at a particular location where an attribute has a specified value.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    // We have the following XML and wish to find the value of the time attribute where msg = "alert-from".

    // <cdr id="4e5d3e7f41bf6201ad81000c29703270" e164="6207">
    //     <user>
    //         <grp name="wfln" mode="active"/>
    //     </user>
    //     <event msg="setup-to" time="287069" e164="5034"/>
    //     <event msg="alert-from" time="287069" e164="5034"/>
    //     <event msg="rel-to" time="287079" e164="5034"/>
    // </cdr>

    // First, build the above XML:

    let xml = CkoXml()!
    xml.tag = "cdr"
    xml.addAttribute(name: "id", value: "4e5d3e7f41bf6201ad81000c29703270")
    xml.addAttribute(name: "e164", value: "6207")
    xml.updateAttrAt(tagPath: "user|grp", autoCreate: true, attrName: "name", attrValue: "wfln")
    xml.updateAttrAt(tagPath: "user|grp", autoCreate: true, attrName: "mode", attrValue: "active")
    xml.updateAttrAt(tagPath: "event", autoCreate: true, attrName: "msg", attrValue: "setup-to")
    xml.updateAttrAt(tagPath: "event", autoCreate: true, attrName: "time", attrValue: "287069")
    xml.updateAttrAt(tagPath: "event", autoCreate: true, attrName: "e164", attrValue: "5034")
    xml.updateAttrAt(tagPath: "event[1]", autoCreate: true, attrName: "msg", attrValue: "alert-from")
    xml.updateAttrAt(tagPath: "event[1]", autoCreate: true, attrName: "time", attrValue: "287069")
    xml.updateAttrAt(tagPath: "event[1]", autoCreate: true, attrName: "e164", attrValue: "5034")
    xml.updateAttrAt(tagPath: "event[2]", autoCreate: true, attrName: "msg", attrValue: "rel-to")
    xml.updateAttrAt(tagPath: "event[2]", autoCreate: true, attrName: "time", attrValue: "287079")
    xml.updateAttrAt(tagPath: "event[2]", autoCreate: true, attrName: "e164", attrValue: "5034")

    // Show that we have the above XML
    print("\(xml.getXml()!)")

    // Find the element where msg = "alert-from"
    // This updates the xml object's reference to the found element (if successful).
    var notUsed: String? = xml.chilkatPath(cmd: "/A/event,msg,alert-from|$")
    if xml.lastMethodSuccess == false {
        print("Not found.")
        return
    }

    // Get the value of the "time" attribute.
    print("time = \(xml.getAttrValue(name: "time")!)")

    // Restore the xml object's internal reference to the root of the XML document
    xml.getRoot2()

}