I get data back unformatted and need to make the date readable
<xsl:for-each select="roa/events/evregular/event">
<table border="0" cellpadding="0">
<TR>xsl:value-of select="date"/></TR>
</table>
</xsl:for-each>
The result is
19920114
is there a inString way to split it up?
Thanks!
-Ryan
<xsl:for-each select="roa/events/evregular/event">
<table border="0" cellpadding="0">
<TR>xsl:value-of select="date"/></TR>
</table>
</xsl:for-each>
The result is
19920114
is there a inString way to split it up?
Thanks!
-Ryan