Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 7th, 2006, 02:51 AM
Registered User
 
Join Date: Apr 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to lesya Send a message via MSN to lesya
Default How can do it... in XSL

Hi,
I need help.

I have a page that "generate" the following code:

<SEGMENTS>
<SEGMENT NAME="webcluster">
<RESULTPAGE>
<QUERYTRANSFORMS>
<QUERYTRANSFORM ACTION="NOP" MSG="A=0,B=0,C=0,D=0.20">

etc, etc, etc.

how can I program in a XSL page to take the value of "C" and "D"?

tnx

 
Old April 7th, 2006, 03:23 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

This kind of problem is much easier in XSLT 2.0 using operations such as tokenize() and xsl:analyze-string. But you can do it in 1.0 using constructs such as

substring-before(substring-after(@MSG, ',C='), ',')

(this one only works if C is neither the first nor the last param).

Of course, if the XML is generated, then a better solution would be to generate better XML, for example

<QUERYTRANSFORM ACTION="NOP">
  <MSG>
     <PARAM KEYWORD="A" VALUE="0"/>
     <PARAM KEYWORD="B" VALUE="0"/>
etc.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
xsl:param and xsl:apply-templates' "select" newbieboobers XSLT 1 March 25th, 2008 07:23 PM
Pass link values as xsl:parameter to php5 then xsl pauljr8 XSLT 1 July 2nd, 2007 10:32 PM
differnce between xsl:apply-templates and xsl:call chandu.mca007 XSLT 2 June 12th, 2007 04:12 AM
xsl advise needed - Replacing UID through XSL Billyl XSLT 6 February 28th, 2006 05:46 AM
XSL Transform with xsl string NOT xsl file skin XSLT 0 June 16th, 2003 07:30 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.