Xpath: How to select text between two <br/> nodes in HTML -


is possible text between 2
nodes in html. code like:

<div @class='article'>     <br/>     <br/> art. 25a, sec. 1 wphg      <br/>      <br/> thereof held indirectly: 0.00% (equals 0 voting rights)      <br/>      <br/> art. 25 wphg: 0.00% (equals 0 voting rights)      <br/>      <br/> 0.00% (equals 0 voting rights)      <br/>      <br/> art. 21, 22 wphg      <br/>      <br/> 8. isin continous      <br/> </div> 

i want have xpath select text 8. isin...

can write xpath? thank much!

could used if text placed second:

//div[@class='article']/text()[2] 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -