[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: problem reqarding link

Subject: Re: problem reqarding link
From: "Joga Singh Rawat jrawat@xxxxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 18 Jan 2024 11:37:03 -0000
Re:  problem reqarding link
Thanks an lot Michael!!!



From: Michael Kay mike@xxxxxxxxxxxx
[mailto:xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx]
Sent: 18 January 2024 14:31
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  problem reqarding link



The simplest approach would be to change



<xsl:for-each select="key('ids', .)">



to



<xsl:for-each select="key('ids', translate(., '#', ''))">



to strip out the '#' character. This would be applied to @id attributes as
well as @href attributes, but if the @id attributes never contain a "#",
that's fine.



Michael Kay

Saxonica





On 18 Jan 2024, at 08:02, Joga Singh Rawat jrawat@xxxxxxxxxxxxxx
<xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:



Hi Team,

I am not able to get required OUTPUT of @sn <link> because of hash (#)
problem.  Please help in this regard.



Input

<html>

<p>Textb& <a href=b#bibxb class=bbibcitb>1</a>  xxx <a
href=b#bibyb class=bbibcitb>2</a></p>

<p class=bBib_entryb id=bbibxb>xxxxxxxxxxxx</p>

<p class=bBib_entryb id=bbibyb>xxxxxxxxxxxx</p>

</html>



output

<html>

<p>Textb& <link rid=bbibxb class=bbibcitb sn=b1b>1</link>  xxx
<link rid=bbibyb class=bbibcitb sn=b2b>2</a></p>

<bib id=bbibxb sn=b1b>xxxxxxxxxxxx</bib>

<bib id=bbibyb sn=b2b>xxxxxxxxxxxx</bib>

</html>



Xsl

<xsl:key name="ids" match="p[@class = 'Bib_entry'] use="@id"/>



<xsl:template match="p[@class='Bib_entry']/@id | @href">

<xsl:for-each select="key('ids', .)">

  <xsl:if test="name(.)= 'p'">

   <xsl:text/>

   <xsl:number format="1" count="p[@class = 'Bib_entry']" level="any"
from="html"/>

  </xsl:if>

</xsl:for-each>

</xsl:template>



<xsl:template match="a">

<xsl:variable name="rid" select="substring-after(@href, '#')"/>

<xsl:choose>

  <xsl:when test="@class = 'bibcit'">

   <link class=bbibcitb>

      <xsl:attribute name="rid">

       <xsl:value-of select="$rid"/>

      </xsl:attribute>

    <xsl:attribute name="sn">

     <xsl:apply-templates select="@href"/>

    </xsl:attribute>

    <xsl:apply-templates/>

   </link>

  </xsl:when>

</xsl:choose>

</xsl:template>



<xsl:template match="p[@class='Bib_entry']">

<bib>

  <xsl:call-template name="id"/>

  <xsl:attribute name="sn">

   <xsl:apply-templates select="@id"/>

  </xsl:attribute>

  <xsl:apply-templates/>

</bib>

</xsl:template>



Thanks a lot in advance

b&JSR

 <http://www.mulberrytech.com/xsl/xsl-list> XSL-List info and archive

EasyUnsubscribe <http://lists.mulberrytech.com/unsub/xsl-list/293509>  (by
email)





Click here
<https://www.mailcontrol.com/sr/Iuw_9ItPYQvGX2PQPOmvUrvxg9nfQreSuSmdBA6I-sPP9
pVVEl9RWlntwcE72iBW1wLVgp83_gmoZTw26POg4w==>  to report this email as spam.

XSL-List info and archive <http://www.mulberrytech.com/xsl/xsl-list>

EasyUnsubscribe <http://lists.mulberrytech.com/unsub/xsl-list/876847>  (by
email <> )

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.