p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Go Back   p2p.wrox.com Forums > XML > XSLT
I forgot my password Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.

Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old May 25th, 2007, 12:02 PM
Authorized User
 
Join Date: May 2007
Location: , , .
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default how to find text within range of two tags

hi!
    I am trying to find a way to detect a text within two tags.
i need to grab text within <br/>..<p>text start with BACKGROUND
is any one can help on this ?
input xhtml file:
<br />OBJECTIVES: The purpose of this study was to assess the impact of body mass <sup></sup>index (BMI) on the short- and long-term
outcomes after percutaneous <sup></sup>coronary intervention (PCI).
<sup></sup>

<p>BACKGROUND: Obesity is associated with advanced coronary artery
disease <sup></sup>(CAD). However, the relation between BMI and
outcome after PCI <sup></sup>remains controversial. <sup></sup></p>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #2 (permalink)  
Old May 25th, 2007, 12:09 PM
mhkay's Avatar
Wrox Author
Points: 12,735, Level: 48
Points: 12,735, Level: 48 Points: 12,735, Level: 48 Points: 12,735, Level: 48
Activity: 100%
Activity: 100% Activity: 100% Activity: 100%
 
Join Date: Apr 2004
Location: Reading, Berks, United Kingdom.
Posts: 3,923
Thanks: 0
Thanked 82 Times in 80 Posts
Default

Something like

<xsl:template match="text()[starts-with('OBJECTIVES')][preceding-sibling::*[1][self::br]]">

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #3 (permalink)  
Old May 25th, 2007, 05:13 PM
Authorized User
 
Join Date: May 2007
Location: , , .
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

thanks
but Can you please explain me how it works ?

komal


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #4 (permalink)  
Old May 25th, 2007, 05:27 PM
mhkay's Avatar
Wrox Author
Points: 12,735, Level: 48
Points: 12,735, Level: 48 Points: 12,735, Level: 48 Points: 12,735, Level: 48
Activity: 100%
Activity: 100% Activity: 100% Activity: 100%
 
Join Date: Apr 2004
Location: Reading, Berks, United Kingdom.
Posts: 3,923
Thanks: 0
Thanked 82 Times in 80 Posts
Default

text()

matches a text node

[starts-with('OBJECTIVES')]

the string value of the text node must start with "OBJECTIVES"

[preceding-sibling::*

there must be a preceding sibling

[1]

that is the first preceding sibling

[self::br]]

and that is a br element

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA Macro FIND THIS MONTH in a given range mvatoi Excel VBA 3 August 24th, 2007 09:12 AM
find days per month in a date range rojer MySQL 1 June 5th, 2007 08:36 PM
find name and define range for Column qball Excel VBA 4 November 17th, 2004 03:55 PM
Extracting text between tags aware Classic ASP Professional 4 December 24th, 2003 04:25 AM
Regular Expression to find all tags except bold edwardforgacs C# 0 December 23rd, 2003 09:31 AM



All times are GMT -4. The time now is 02:55 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc