asked on
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
Extensible Markup Language (XML) refers to the encoding of documents such that they can be read by both machines and humans. XML documents use tags to show the beginning and end of a set of data. XML is used extensively on websites to show volumes of data, and is the default for a number of office productivity suites. This topic includes discussions of XML-related technologies, such as XQuery (the XML Query language), XPath (the XML Path language), XSLT (eXtensible Stylesheet Language Transformations), XLink (the XML Linking language) and XPointer (the XML Pointer language).
TRUSTED BY
<!-- Here we know the word is ending with period. So we can do test here -->
<!-- You can put the special list of words in a file, import it, iterate the word list to see if
any one match the current $normArg. If test is true, simply jump out the test. Otherwise,
at the end of the loop, remove the trailing period. -->
<!-- you should use ends-with() function instead contains() since you want to remove trailing period, not the period in the middle
of the sentence -->
<xsl:value-of select="substring($normArg
</xsl:when>
hope this helps