In xsl i would like to create a variable
<xsl:variable name="adam" select="$adam, new"/>
this seems not to work for me. I am in a for-each loop and would like to keep adding the variable + text like in jsp when you can say
String a = "3";
a = a + "7";
a = a + "6";
a = a + "9";
out.println(a);
Is there a way to add a variables value to its self?
<xsl:variable name="adam" select="$adam, new"/>
this seems not to work for me. I am in a for-each loop and would like to keep adding the variable + text like in jsp when you can say
String a = "3";
a = a + "7";
a = a + "6";
a = a + "9";
out.println(a);
Is there a way to add a variables value to its self?