|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: parsing XML using regular expressions
Simon St.Laurent asks > We have occasional battles here about the wisdom of using > non-XML-parser-based tools to process XML, and regular expressions always > seem to come up. > > I've got a reader question that sort of ties into a (non-regex-based) Java > project I'm working on, about the viability of regex and other text-based > processing for XML work. > > Has anyone written a generic XML parser, even a somewhat broken one, that's > built on regular expressions? I remember hearing of something a long while > ago, but I can't find it. > > I'm not concerned with the efficiency/viability/profitability/wisdom of > such a solution, just whether or not it's been done - especially if it's > available open source. > Yes, the Python parser in the standard module "xmllib" uses regular expressions. It's not validating but it will process the DTD and insert default values, and all that good stuff. Python is at http://www.python.org . There's also the "shallow parsing" regex expressions at ftp://fas.sfu.ca/pub/cs/TR/1998/CMPT1998-17.html: REX: XML Shallow Parsing with Regular Expressions Robert D. Cameron School of Computing Science Simon Fraser University This work provides Python,perl,Javascript, and lex/flex regexes for XML. To quote from the site: "... this paper documents a set of XML shallow parsing expressions that can be used a basis for simple, correct, efficient, robust and language-independent XML shallow parsing. Complete shallow parser implementations of less than 50 lines each in Perl, JavaScript and Lex/Flex are also given." It includes an on-line demo. Regexes can be very useful, especially if they are going to be processing your own xml, where you know something about its structure beforehand. Regards, Tom Passin
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








