Click here to Skip to main content
15,886,519 members
Home / Discussions / XML / XSL
   

XML / XSL

 
QuestionHow to Work with XML file in MFC Dialog based application? Pin
Le@rner25-Jul-11 20:29
Le@rner25-Jul-11 20:29 
AnswerRe: How to Work with XML file in MFC Dialog based application? - Repost Pin
Richard MacCutchan25-Jul-11 21:30
mveRichard MacCutchan25-Jul-11 21:30 
QuestionShould I ask for better XML? Pin
chriselst18-Jul-11 0:02
chriselst18-Jul-11 0:02 
AnswerRe: Should I ask for better XML? Pin
dasblinkenlight18-Jul-11 3:10
dasblinkenlight18-Jul-11 3:10 
GeneralRe: Should I ask for better XML? Pin
chriselst18-Jul-11 3:23
chriselst18-Jul-11 3:23 
GeneralRe: Should I ask for better XML? Pin
dasblinkenlight18-Jul-11 3:38
dasblinkenlight18-Jul-11 3:38 
GeneralRe: Should I ask for better XML? Pin
jschell25-Jul-11 10:58
jschell25-Jul-11 10:58 
GeneralRe: Should I ask for better XML? Pin
dasblinkenlight25-Jul-11 19:08
dasblinkenlight25-Jul-11 19:08 
GeneralRe: Should I ask for better XML? Pin
jschell26-Jul-11 9:38
jschell26-Jul-11 9:38 
GeneralRe: Should I ask for better XML? Pin
dasblinkenlight26-Jul-11 10:37
dasblinkenlight26-Jul-11 10:37 
GeneralRe: Should I ask for better XML? Pin
jschell27-Jul-11 12:04
jschell27-Jul-11 12:04 
AnswerRe: Should I ask for better XML? Pin
jschell25-Jul-11 11:00
jschell25-Jul-11 11:00 
QuestionCan anybody tell me whats wrong with this xslt Pin
Haim Nachum26-Jun-11 13:00
Haim Nachum26-Jun-11 13:00 
AnswerRe: Can anybody tell me whats wrong with this xslt Pin
Nagaraj Muthuchamy26-Jun-11 23:33
professionalNagaraj Muthuchamy26-Jun-11 23:33 
QuestionLoop over chars in a string Pin
KenBonny1-Jun-11 1:58
KenBonny1-Jun-11 1:58 
I have a string in an XML file and I want to display each letter (or number) in a different box (div). So I made the div tag and I want to display one letter (or number) in it.

Currently I have this code:
...
<!-- text to itterate over -->
<xsl:variable name="text">name person</xsl:variable>
<xsl:call-template name="loop">
  <xsl:with-param name="text" />
</xsl:call-template>
...
<xsl:template name="loop">
  <xsl:param name="text" />
  <xsl:param name="count">1</xsl:param>
  <xsl:if test="not(count = string-length($text))">
    <div class="fillIn">
      <xsl:value-of select="substring($text, $count, 1)"/>
    </div>
      <xsl:call-template name="loop">
        <xsl:with-param name="count" select="$count + 1" />
        <xsl:with-param name="text" select="$text" />
      </xsl:call-template>
  </xsl:if>
</xsl:template>


Any advice on what I can improve? Because this isn't working.

Thanks in advance!
AnswerRe: Loop over chars in a string [modified] Pin
George L. Jackson7-Jun-11 10:27
George L. Jackson7-Jun-11 10:27 
QuestionGetting XML content Pin
stevenykl31-May-11 19:43
stevenykl31-May-11 19:43 
AnswerRe: Getting XML content Pin
Erik Molenaar31-May-11 22:30
Erik Molenaar31-May-11 22:30 
GeneralRe: Getting XML content Pin
stevenykl1-Jun-11 0:21
stevenykl1-Jun-11 0:21 
QuestionHelp to write Xquery Pin
Neno9930-Apr-11 3:37
Neno9930-Apr-11 3:37 
AnswerRe: Help to write Xquery Pin
jschell30-Apr-11 12:57
jschell30-Apr-11 12:57 
GeneralRe: Help to write Xquery Pin
Neno993-May-11 16:07
Neno993-May-11 16:07 
GeneralRe: Help to write Xquery Pin
Richard MacCutchan3-May-11 21:58
mveRichard MacCutchan3-May-11 21:58 
GeneralRe: Help to write Xquery Pin
jschell4-May-11 8:47
jschell4-May-11 8:47 
QuestionHow to bind the data into a class object from a list. Pin
Rocky2329-Apr-11 0:57
Rocky2329-Apr-11 0:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.