Hi All,
I am using XQuery to evaluate an xpath. My code is as follows,
/*Example xml I am using <interface> <name>intf0</name> </interface> <interface> <name>intf1</name> </interface> <interface> <name>intf2</name> </interface> <interface> <name>intf3</name> </interface> */ XQuery query = new XQuery("/interfaces/interface/name/text()"); String str = query.execute(ctx);
// Result string is - intf0intf1intf2intf3
I want the result such as intf0 intf1 intf2 intf3
I could not get the result list and I could not differentiate whether the result has multiple values or a single value.
Please advice me if there is any other way to identify the result list.
Thanks in Advance.