Sample code for 30+ languages & platforms
Unicode C++

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 Unicode C++ Downloads

Unicode C++
#include <CkXmlW.h>

void ChilkatSample(void)
    {
    bool success = 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:

    CkXmlW xml;
    xml.put_Tag(L"cdr");
    xml.AddAttribute(L"id",L"4e5d3e7f41bf6201ad81000c29703270");
    xml.AddAttribute(L"e164",L"6207");
    xml.UpdateAttrAt(L"user|grp",true,L"name",L"wfln");
    xml.UpdateAttrAt(L"user|grp",true,L"mode",L"active");
    xml.UpdateAttrAt(L"event",true,L"msg",L"setup-to");
    xml.UpdateAttrAt(L"event",true,L"time",L"287069");
    xml.UpdateAttrAt(L"event",true,L"e164",L"5034");
    xml.UpdateAttrAt(L"event[1]",true,L"msg",L"alert-from");
    xml.UpdateAttrAt(L"event[1]",true,L"time",L"287069");
    xml.UpdateAttrAt(L"event[1]",true,L"e164",L"5034");
    xml.UpdateAttrAt(L"event[2]",true,L"msg",L"rel-to");
    xml.UpdateAttrAt(L"event[2]",true,L"time",L"287079");
    xml.UpdateAttrAt(L"event[2]",true,L"e164",L"5034");

    // Show that we have the above XML
    wprintf(L"%s\n",xml.getXml());

    // Find the element where msg = "alert-from"
    // This updates the xml object's reference to the found element (if successful).
    const wchar_t *notUsed = xml.chilkatPath(L"/A/event,msg,alert-from|$");
    if (xml.get_LastMethodSuccess() == false) {
        wprintf(L"Not found.\n");
        return;
    }

    // Get the value of the "time" attribute.
    wprintf(L"time = %s\n",xml.getAttrValue(L"time"));

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