Using XSLT to select after EACH instance in a string/substring
问题 I'm attempting to write an XSLT stylesheet that will handle a Dublin Core (XML) cataloging record and create Chicago, APA, and MLA versions of the citation for each book. I've got everything worked out fine except the APA author one. APA's style for authors requires the author's last name (done), comma, first initial (done), any other initials (my stuck place problem). What I have right now (and sample DC element is below): <xsl:value-of select="substring-before(dc:creator[1],',')" /><xsl