All,
I am using <xsl:stylesheet version="2.0" .If in the input XML file,
the text in the <p> tag repeats itself such as
<text>
<p>Bradley Cooper named People’s ‘Sexiest man alive 2011” Bradley
Cooper named People’s ‘Sexiest man alive 2011”</p>
</text>
I want to write code to check it and omit it. The result should be:-
After putting check in the xsl and deleting the duplicate string. The
output should be:-
<text>
<p>Bradley Cooper named People’s ‘Sexiest man alive 2011” </p>
</text>
Thanks for the help!
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--