Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSXML and element parsing



On 21.11.2007, at 13:21, Justin McKillican wrote:

Well no replies regarding this, would anyone be able to push me in the right direction to parse a simple XML to get a single element from a certain child?

try NSXMLDocument nodesForXPath:error: method, as described in <http://developer.apple.com/documentation/Cocoa/Conceptual/NSXML_Concepts/Articles/QueryingXML.html#//apple_ref/doc/uid/TP40001258 >. You supply an XPath expression and this method returns the matched nodes.


For example "//Book[2]/Title" would return the Title-node of the second book.

Cheers,


felix



For testing purposes my XML file looks like this :

<?xml version="1.0"?>
<mysqldump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
	<Book>
		<Comment>amazing book</Comment>
		<Title>Book Title</Title>
		<Publisher>Me</Publisher>
	</Book>
	<Book>
		<Comment>bad book</Comment>
		<Title>Another Book</Title>
		<Publisher>Someon Else</Publisher>
	</Book>
</mysqldump>


TIA, -justin
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden

This email sent to email@hidden
References: 
 >NSXML and element parsing (From: Justin McKillican <email@hidden>)
 >Re: NSXML and element parsing (From: Justin McKillican <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.