brunobuzzi / XML-XPath

An XPath library for Pharo - GemStone port

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XML-XPath

Build Status

GemStone port.

An XPath library for Pharo leveraging the XML parsing capabilities of XMLParser. Supports XPath 1.0 syntax with extensions.

Installation

Metacello new
	baseline: 'XPath';
	repository: 'github://pharo-contributions/XML-XPath/src';
	load.

Usage

A simple example on how to use the XPath class:

doc := XMLDOMParser parse: aStream.
path := XPath for: 'entry/content/@src'.
urls := path in: doc.

This will look for each 'src' attribute of each 'content' node of all 'entry' nodes in the document.

LICENSE

MIT License

History

This project was migrated from http://smalltalkhub.com/#!/~PharoExtras/XPath

About

An XPath library for Pharo - GemStone port


Languages

Language:Smalltalk 100.0%