English | >> Français << | Deutsch | Magyar | 中文 | Polski enternetusers > Tutorials > XSLT Tutorial
>> Page 43 << | Précédent | Suivant | Contenu | Index des éléments

Dans la Feuille de style XSLT 1 , des chaînes de caractères constituent les arguments de la fonction boolean(). Une chaîne de caractères est vraie si et seulement si sa longueur n'est pas nulle. Dans la Feuille de style XSLT 2 , le texte est converti en nombres, puis soumis à la fonction boolean(). Feuille de style XSLT 3 compare "0" en tant que chaîne de caractères et en tant que nombre. Feuille de style XSLT 4 emploie des ensembles de noeuds comme arguments de la fonction boolean().

Feuille de style XSLT 1

Source Surf
<source>

<text>124</text>
<text>AB234</text>
<text>-16</text>
<text>0</text>
<text/>
<text>false</text>

</source>

Sortie
<TABLE border="1">
<TR>
<TH>text</TH>
<TH>boolean</TH>
</TR>
<TR>
<TD>124</TD>
<TD>true</TD>
</TR>
<TR>
<TD>AB234</TD>
<TD>true</TD>
</TR>
<TR>
<TD>-16</TD>
<TD>true</TD>
</TR>
<TR>
<TD>0</TD>
<TD>true</TD>
</TR>
<TR>
<TD/>
<TD>false</TD>
</TR>
<TR>
<TD>false</TD>
<TD>true</TD>
</TR>
</TABLE>

Vue HTML
text boolean
124 true
AB234 true
-16 true
0 true
false
false true
Feuille de style XSLT
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<TABLE border="1">
<TR>
<TH>text</TH>
<TH>boolean</TH>
</TR>
<xsl:for-each select="//text">
<TR>
<TD>
<xsl:value-of select="."/>
<xsl:text/>
</TD>
<TD>
<xsl:value-of select="boolean(text())"/>
</TD>
</TR>
</xsl:for-each>
</TABLE>
</xsl:template>


</xsl:stylesheet>



Feuille de style XSLT 2

Source Surf
<source>

<text>124</text>
<text>AB234</text>
<text>-16</text>
<text>0</text>
<text/>
<text>false</text>

</source>

Sortie
<TABLE border="1">
<TR>
<TH>text</TH>
<TH>number</TH>
<TH>boolean</TH>
</TR>
<TR>
<TD>124</TD>
<TD>124</TD>
<TD>true</TD>
</TR>
<TR>
<TD>AB234</TD>
<TD>NaN</TD>
<TD>false</TD>
</TR>
<TR>
<TD>-16</TD>
<TD>-16</TD>
<TD>true</TD>
</TR>
<TR>
<TD>0</TD>
<TD>0</TD>
<TD>false</TD>
</TR>
<TR>
<TD/>
<TD>NaN</TD>
<TD>false</TD>
</TR>
<TR>
<TD>false</TD>
<TD>NaN</TD>
<TD>false</TD>
</TR>
</TABLE>

Vue HTML
text number boolean
124 124 true
AB234 NaN false
-16 -16 true
0 0 false
NaN false
false NaN false
Feuille de style XSLT
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<TABLE border="1">
<TR>
<TH>text</TH>
<TH>number</TH>
<TH>boolean</TH>
</TR>
<xsl:for-each select="//text">
<TR>
<TD>
<xsl:value-of select="."/>
<xsl:text/>
</TD>
<TD>
<xsl:value-of select="number(text())"/>
<xsl:text/>
</TD>
<TD>
<xsl:value-of select="boolean(number(text()))"/>
</TD>
</TR>
</xsl:for-each>
</TABLE>
</xsl:template>


</xsl:stylesheet>



Feuille de style XSLT 3

Source Surf
<source>

<text>124</text>
<text>AB234</text>
<text>-16</text>
<text>0</text>
<text/>
<text>false</text>

</source>

Sortie
<P>The boolean value of "0" is <B>true</B> if "0" is a string, but <B>false</B> if "0" is a number.</P>

Vue HTML

The boolean value of "0" is true if "0" is a string, but false if "0" is a number.

Feuille de style XSLT
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<P>
<xsl:text>The boolean value of "0" is </xsl:text>
<B>
<xsl:value-of select="boolean(//text[text()='0'])"/>
</B>
<xsl:text> if "0" is a string, but </xsl:text>
<B>
<xsl:value-of select="boolean(number((//text[text()='0'])))"/>
</B>
<xsl:text> if "0" is a number.</xsl:text>
</P>
</xsl:template>


</xsl:stylesheet>



Feuille de style XSLT 4

Source Surf
<source>

<text>124</text>
<text>AB234</text>
<text>-16</text>
<text>0</text>
<text/>
<text>false</text>

</source>

Sortie
<TABLE border="1">
<TR>
<TH>node-set</TH>
<TH>boolean</TH>
</TR>
<TR>
<TD>/</TD>
<TD>true</TD>
</TR>
<TR>
<TD>//text</TD>
<TD>true</TD>
</TR>
<TR>
<TD>//number</TD>
<TD>false</TD>
</TR>
<TR>
<TD>//text[23]</TD>
<TD>false</TD>
</TR>
</TABLE>

Vue HTML
node-set boolean
/ true
//text true
//number false
//text[23] false
Feuille de style XSLT
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<TABLE border="1">
<TR>
<TH>node-set</TH>
<TH>boolean</TH>
</TR>
<TR>
<TD>
<xsl:text>/</xsl:text>
</TD>
<TD>
<xsl:value-of select="boolean(/)"/>
</TD>
</TR>
<TR>
<TD>
<xsl:text>//text</xsl:text>
</TD>
<TD>
<xsl:value-of select="boolean(//text)"/>
</TD>
</TR>
<TR>
<TD>
<xsl:text>//number</xsl:text>
</TD>
<TD>
<xsl:value-of select="boolean(//number)"/>
</TD>
</TR>
<TR>
<TD>
<xsl:text>//text[23]</xsl:text>
</TD>
<TD>
<xsl:value-of select="boolean(//text[23])"/>
</TD>
</TR>
</TABLE>
</xsl:template>


</xsl:stylesheet>

4-19-2013

4-19-2013

kevin carr city of stantonkevin carr city of stantonkevin carr city of stantonkevin carr city of stantonSales Tax Measure GG City of Stantonkevin carr city of stantonkevin carr city of stantonkevin carr city of stantonkevin carr city of stanton


free stock videos
iphone battery cases

Kevin Carr Stanton with Governor Brown Kevin Carr with CA CFO John Chaing Kevin Carr with Congresswoman Loretta Sanchez Kevin Carr with CA State Senator Joe Dunn

Billabong Board Shorts
Quicksilver Board Shorts
I got a new iPhone5 battery case that I found on the web. I have a new ipad and I just love it. My new HTC One cellphone is awesome. I ordered a new iphone5 and I can't wait to get it. The smartphone charger I purchased is exactly what I needed. The new HTC phone is the best. I need more used AOL disks for my computer. The new emerica shoe has a new larger display.
hawaiian sandal
dekline
true religion bootcut billy jeans
hawaiian sandals

Rigoberto Ramirez

I found a iphone battery cases to get a battery backup chargers. That's why there are portable power packs—when the power is out.

I reviewed the clothing at iphone battery cases and found the best Active clothing available.

I ordered the plumber in orange county and a incase backpack then I bought the backpack icon from Incase.

Buy womens cowboy boots humu on the web store 1cecilia165 humu shoe and order a few.

These are the shops to visit:

  1. Sandals from hawaii
  2. hawaiian leather sandal
  3. hawaiian leather sandal
  4. skate footwear
true religion bootcut billy jeans
Quicksilver surf clothing Board Shorts



skateboard
David Cadena Stanton
iPhone 6 plus battery pack
There is the 1cecilia181 for my car and the 1cecilia182 for my other car and the 1cecilia183 for my wife's car. The new Baby Doll sexy looking lingerie is the best one to get. The new Baby Doll sexy lingerie looks great. The new the bridal chemises from In Bloom is the best around.

Also, you will want to check out Stanton California so you can see what's up and they are part of Stanton City Hall as well.

You can also get Organic Skin Care products from Bliss Bath Body and you must check out their Natural Body Lotions and bath soaps

Now if you are looking for the best deals

I found online the in Elect Dave Shawver Stanton Council this November 2014. Elect march madness ncaa and internetusers this November 2014.

delivered.

These are the shops to visit:

  1. Sandals from hawaii
  2. hawaiian leather sandal
  3. hawaiian leather sandal
  4. skate footwear

I ordered the plumber in orange county and a incase backpack then I bought the backpack icon from Incase.

Buy womens cowboy boots humu on the web store 1cecilia165 humu shoe and order a few.

I found a hawaiian sandal and another Rigoberto Ramirez on this hawaiian Sandal website.



a true religion bootcut billy jeans and

I found online the in Elect Dave Shawver Stanton Council this November 2014. Elect march madness ncaa and internetusers this November 2014.

delivered.

These are the shops to visit:

  1. Sandals from hawaii
  2. hawaiian leather sandal
  3. hawaiian leather sandal
  4. skate footwear

I ordered the plumber in orange county and a incase backpack then I bought the backpack icon from Incase.

Buy womens cowboy boots humu on the web store 1cecilia165 humu shoe and order a few.

I found a hawaiian sandal and another Rigoberto Ramirez on this hawaiian Sandal website.



a true religion bootcut billy jeans and
Hey, check out this Organic Skin Care European Soaps along with Natural Lavender Body Lotion and shea butter

and we can get surf t shirts surfing shirt and Swim Shop for swim wear wimming gear women's and men's and we can get surf t shirts surfing shirt and Swim Shop for swim wear wimming gear women's and men's