What is the difference between using as=”element(data)+” and as=”element(data)” in xsl:variable. The below XSL solution works if use “+” but not when i use ““. Can some one clarify.
What is the difference between using as=element(data)+ and as=element(data) in xsl:variable. The below XSL
Share
means a sequence of one or more
dataelements. That is, the sequence cannot be empty.means a sequence of zero or more `data elements. That is, the sequence can be empty.