Subject: finding and removing duplicate string
From: Jacob L <arkle.ash@xxxxxxxxx>
Date: Fri, 2 Dec 2011 10:32:07 -0500
|
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 Peoples Sexiest man alive 2011 Bradley
Cooper named Peoples 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 Peoples Sexiest man alive 2011 </p>
</text>
Thanks for the help!
|