ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> xsl-list
xsl-list
RE: [xsl] Quotes in expression
by Michael Kay other posts by this author
Nov 3 2006 7:35AM messages near this date
[xsl] Quotes in expression | [xsl] How to retain subtree elements while using sub-string
& XSLT >  
>  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='',{$data},'
>  ']/
>  table/row')

Is this within an XSLT stylesheet? 1.0 or 2.0?

When in XSLT, an XML character reference like ' 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/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe@[...].com> 
--~--
Thread:
Ed Yau
Michael Kay

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved