XML Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreXML Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 19th, 2011, 05:20 PM
whitevamp whitevamp is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2011
Posts: 2 whitevamp User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 20 sec
Reputation Power: 0
Newbie xml/xsl question

i have this xml file, and i am pulling certain information out of it via an xsl file, like this.

Code:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="text" encoding="utf-8"/>
<xsl:param name="sep" select="'&#09;' " />
	<xsl:param name="eol" select="'&#10;' " />
	<xsl:template match="Items">

    <xsl:for-each select="Item">
			<xsl:value-of select="ItemKey"/>
			<xsl:value-of select="$sep"/>
			<xsl:value-of select="Name/English"/>
and about 30 more lines
			<xsl:value-of select="$eol"/>
		</xsl:for-each>
	</xsl:template>
</xsl:stylesheet>


and it transforms the information just like i want but i cant figure out how to wrap ItemKey and Name/English ( all the node's ) in '' like this 'Name/English' for the transformed text.
how would i go about this?
and thanks in-advance for any help on this question.

Last edited by requinix : July 19th, 2011 at 05:35 PM.

Reply With Quote
  #2  
Old July 19th, 2011, 05:40 PM
requinix's Avatar
requinix requinix is offline
Still alive
Dev Shed God 16th Plane (12500 - 12999 posts)
 
Join Date: Mar 2007
Location: Washington, USA
Posts: 12,860 requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)  Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 5 Months 1 Week 5 Days 5 h 30 m 31 sec
Reputation Power: 8977
Send a message via AIM to requinix Send a message via MSN to requinix Send a message via Yahoo to requinix Send a message via Google Talk to requinix
(I "fixed" the XSLT. The problem is the forum software, and the trick to get entities to display properly is so confusing I don't know if I can explain it well enough; Edit or Reply to the post to see what I mean.)

All you need is to add quotes? How about
Code:
<xsl:text>'</xsl:text>
<xsl:value-of select="ItemKey" />
<xsl:text>'</xsl:text>

Last edited by requinix : July 19th, 2011 at 05:42 PM.

Reply With Quote
  #3  
Old July 19th, 2011, 06:08 PM
whitevamp whitevamp is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2011
Posts: 2 whitevamp User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 20 sec
Reputation Power: 0
thank you for the fast reply back to this question.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreXML Programming > Newbie xml/xsl question

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap