Thursday, 12 September 2013

untitled

untitled

How can I declare a string within a comma-separated value, if the string
itself contains a comma?
The following example uses {} to show you the string I'd like to parse as
"one string":
<xsl:variable name="var_c_lang"
select="'Canada,China,Europe,France,{Japan, USA}'"/>
Would it be allowed to nest 's, like: ?
<xsl:variable name="var_c_lang"
select="'Canada,China,Europe,France,'Japan, USA''"/>
or to escape them individually:?
<xsl:variable name="var_c_lang"
select="'Canada','China','Europe','France','Japan, USA'"/>
thanks, Alex

No comments:

Post a Comment