[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: newline/form feed valid as attribute value?

  • From: David Carlisle <davidc@nag.co.uk>
  • To: Dan Shelton <dan.f.shelton@gmail.com>
  • Date: Mon, 02 Jul 2012 21:57:31 +0100

Re:  newline/form feed valid as attribute value?
On 02/07/2012 21:43, Dan Shelton wrote:
> On 2 July 2012 22:17, Michael Kay <mike@saxonica.com> wrote:
>> It's theoretically impossible to write an XML parser using regular
>> expressions alone, because XML is not a regular language.
>
> So what's wrong with the following regex pattern? It was passed around
> by Roland Mainz in David Korn's ksh93 mailing list a few weeks ago and
> is used as a *core* (there's more prep and postprocess code, but the
> parsing alone is done by repeatedly applying the regex to a character
> stream) for a xml fragment parser (brackets not postfixed with ?:
> capture data and are stored in the 2D array .sh.match):
> ---------------
> dummy="${xmltext//~(Ex-p)(?:
> 	(<!--.+-->)+?|	# xml comments
> 	(<[:_[:alnum:]-]+
> 		(?: # attributes
> 			[[:space:]]+
> 			(?: # four different types of name=value syntax
> 				(?:[:_[:alnum:]-]+=[^\"\'[:space:]]+?)|	#x='foo=bar huz=123'
> 				(?:[:_[:alnum:]-]+=\"[^\"]*?\")|		#x='foo="ba=r o" huz=123'
> 				(?:[:_[:alnum:]-]+=\'[^\']*?\')|		#x="foox huz=123"
> 				(?:[:_[:alnum:]-]+)				#x="foox huz=123"
> 			)
> 		)*
> 		[[:space:]]*
> 		\/?	# start tags which are end tags, too (like <foo\/>)
> 	>)+?|				# xml start tags
> 	(<\/[:_[:alnum:]-]+>)+?|	# xml end tags
> 	([^><]+)			# xml text
> 	)/D}"
> ---------------

The comment regexp also does not match the XML 9or HTML) syntax. the .+ 
in the middle means it won't accept <!----> which is a well formed XML 
comment and it will accept <!-----> which is not a well formed comment.

The regexp for element and attribute names does not match that of xml 
(4th edition) xml (5th edition) or html. the details vary but in all 
cases the set of characters allowed for the first letter is more 
restricted than the set of characters allowed for following letters. 
<a1> is well formed but <1a> is not.

David

-- 
google plus: https:/profiles.google.com/d.p.carlisle




[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.