English | Français | Deutsch | >> Magyar << | 中文 | Polski enternetusers > Tutorials > XSLT Tutorial
>> Oldal 50 << | Előző | Következő | Tartalom | Elem index

A substring-before() függvény az els? argumentumként megadott sztring azon rész-sztringjével tér vissza, mely megel?zi, míg a substring-after() függvény azon rész-sztringjével tér vissza, mely k?veti a második argumentumként megadott sztring els? el?fordulását az els? argumentum sztringen belül. A substring() függvény az els? sztring azon rész-sztringjével tér vissza, mely a második argumentumként megadott pozíciónál kezd?dik, a hossza pedig a harmadikként megadott argumentum. Ha a harmadik argumentum nincs megadva, akkor a második argumentumként megadott pozíciótól kezdve a sztring végéig tart a visszakapott rész-sztring. A számolás 1-el kezd?dik. ( XSLT stíluslap 1 ). Az XSLT stíluslap 2 azokat a helyzeteket szimulálja, ahol az argumentum a tartományon kívül esik, vagy értéke nem egész szám. A visszakapott rész-sztring azokat a karaktereket tartalmazza, melyek esetén a karakter pozíciója nagyobb vagy egyenl? a második argumentummal, és amennyiben a harmadik argumentum meghatározott, akkor kisebb mint a második és harmadik argumentum ?sszege.

XSLT stíluslap 1

XML forrás
<source>

<text>Welcome to XSL world.</text>
<string>XSL</string>
<start>4</start>
<end>10</end>

</source>

Kimenet
<DIV>
<B>Text: </B>Welcome to XSL world.</DIV>
<B>Text before XSL: </B>Welcome to <DIV>
<B>Text after XSL: </B> world.</DIV>
<DIV>
<B>Text from position 4: </B>come to XSL world.</DIV>
<DIV>
<B>Text from position 4 of length 10: </B>come to XS</DIV>

HTML nézet
Text: Welcome to XSL world.
Text before XSL: Welcome to
Text after XSL: world.
Text from position 4: come to XSL world.
Text from position 4 of length 10: come to XS
XSLT stíluslap
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<DIV>
<B>
<xsl:text>Text: </xsl:text>
</B>
<xsl:value-of select="//text"/>
</DIV>
<B>
<xsl:text>Text before </xsl:text>
<xsl:value-of select="//string"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring-before(//text,//string)"/>
<DIV>
<B>
<xsl:text>Text after </xsl:text>
<xsl:value-of select="//string"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring-after(//text,//string)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start"/>
<xsl:text> of length </xsl:text>
<xsl:value-of select="//end"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start,//end)"/>
</DIV>
</xsl:template>


</xsl:stylesheet>



XSLT stíluslap 2

XML forrás
<source>

<text>Welcome to XSL world.</text>
<string>XSL</string>
<start>4</start>
<end>10</end>

</source>

Kimenet
<DIV>
<B>Text from position -4: </B>Welcome to XSL world.</DIV>
<DIV>
<B>Text from position 4.45: </B>come to XSL world.</DIV>
<DIV>
<B>Text from position -8 of length 15: </B>Welcom</DIV>
<DIV>
<B>Text from position 4.4 of length 1.7: </B>co</DIV>
<DIV>
<B>Text from position 4.4 of length 1.2: </B>c</DIV>

HTML nézet
Text from position -4: Welcome to XSL world.
Text from position 4.45: come to XSL world.
Text from position -8 of length 15: Welcom
Text from position 4.4 of length 1.7: co
Text from position 4.4 of length 1.2: c
XSLT stíluslap
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start * -1"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start * -1)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start + 0.45"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start + 0.45)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start *-2"/>
<xsl:text> of length </xsl:text>
<xsl:value-of select="//end *1.5"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start * -2,//end * 1.5)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start + 0.4"/>
<xsl:text> of length </xsl:text>
<xsl:value-of select="//end div 10 + 0.7"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start + 0.4,//end div 10 + 0.7)"/>
</DIV>
<DIV>
<B>
<xsl:text>Text from position </xsl:text>
<xsl:value-of select="//start + 0.4"/>
<xsl:text> of length </xsl:text>
<xsl:value-of select="//end div 10 + 0.2"/>
<xsl:text>: </xsl:text>
</B>
<xsl:value-of select="substring(//text,//start + 0.4,//end div 10 + 0.2)"/>
</DIV>
</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 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 Kevin Carr Senate Candidate Fullerton 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 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 Kevin Carr Senate Candidate Fullerton 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 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