xsl-list
[Top] [All Lists]

Re: Identifying Existence of Attributes

2003-03-15 01:43:37

<balajeec(_at_)mastek(_dot_)com> wrote in message
news:551A143C7FC0F64FA508178F55A7E01902FE2412(_at_)ind-spz7exh002(_dot_)mastek(_dot_)com(_dot_)(_dot_)(_dot_)
Hi ,
I have an element by the name
<Text>
I want to check whether the current <Text> node has the attribute by the
name
"indent"
defined in it.
How can i do it.??


Just test for @indent

e.g.:

<xsl:if test="@indent ">
  <!-- do something -->
</xsl:if>


Translated in English the above means: "if the current node has an attribute
named 'indent' do something".

The test does not depend on whether the current node is named "Text",
because you said this is already a known fact.


In case you want to check that both the current node is named "Text" and it
has an attribute named "indent", the XPath expression that returns the truth
value of this fact is:

self::Text and @indent



=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL




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