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

RE: Quotes in expression

Subject: RE: Quotes in expression
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Fri, 3 Nov 2006 15:35:10 -0000
quotes on expression
> I'm having issues with a the ' character.
> 
> What I'm looking to do is create a line that says:
> $content-file/Doc/Field['myField']/table/row
> 
> I have used the following expression:
> concat('$content-file/Doc/Field[@FieldName=&#x0027;',{$data},'
> &#x0027;]/
> table/row')

Is this within an XSLT stylesheet? 1.0 or 2.0?

When in XSLT, an XML character reference like &#x27; is expanded before
XPath gets to see it. So the expression XPath sees is

concat('$content-file/Doc/Field[@FieldName='',{$data},'']/table/row')

In 2.0 (like in SQL), a double apos within an apos-delimited string
represents a single apos, which would account for the output you are seeing.

In 2.0 you can therefore do

concat('$content-file/Doc/Field[@FieldName=''',$data,''']/table/row')

In 1.0 it's simplest to declare a variable:

<xsl:variable name="apos">'</xsl:variable>

then

concat('$content-file/Doc/Field[@FieldName=',$apos, $data, $apos,
']/table/row')

Either way, your curly braces are very wrong. Curlies never appear inside an
XPath expression, they are only used to delimit an XPath expression embedded
in enclosing literal text.

Michael Kay
http://www.saxonica.com/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

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

Buy Stylus Studio Now

Cast Your Vote

We need your help – Vote for DataDirect XML Products!

  • Best SOA or XML site

Winners and finalists announced at SOA World Conference in November.

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
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-2007 All Rights Reserved.