xsl-list
[Top] [All Lists]

RE: [xsl] How to Create Sequence of Quoted Strings

2008-01-24 08:00:47
Hi,

   Since you are dealing with double quotes, have you tried using backslashes 
to escape the double quotes you tried to insert?

I believe it should do the trick.

Good luck!

======================================================
Alice Wei
MIS 2008
School of Library and Information Science
Indiana University Bloomington
ajwei(_at_)indiana(_dot_)edu
________________________________________
From: Eliot Kimber [ekimber(_at_)reallysi(_dot_)com]
Sent: Thursday, January 24, 2008 8:29 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] How to Create Sequence of Quoted Strings

I suspect this is an FAQ and I feel like I should be able to figure it
out but I'm stumped.

What I'm trying to achieve is to take the set of @value values for the
xsd:enumeration children of xsd:restriction and generate a string of the
form "'foo' or 'bar' or 'fred'".

Using an xs:select statement with a simple FLOWR expression I can do
this but no using "'" as the quote (assuming the context is xs:restriction):

   <xsl:variable name="quotedNames" select="for $n in
xs:enumeration/@value return concat('^', $n, '^')"/>
   <xsl:sequence select="string-join($quotedNames, ' or ')"/>


Gives me "^foo^ or ^bar^ or ^fred^".

My problem is I can't figure out how to replace "^" with "'" in the
FLOWR expression--I must have been sick the day they discussed this
aspect of XSLT.

What silly thing was taught the day I was out sick? Or will this
particular approach simply not work?

Thanks,

Eliot
--
Eliot Kimber
Senior Solutions Architect
"Bringing Strategy, Content, and Technology Together"
Main: 610.631.6770
www.reallysi.com
www.rsuitecms.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(_at_)lists(_dot_)mulberrytech(_dot_)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(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--