2つのノードにノードのHTML段落を分割し、以下のように2つのノードに分割したい:XMLの上XSLTは、私は、XMLノード以下のいるHTML
<root>
<story>
<p>Headlines:<br/>1- First news headline<br/>2- Second news headline<br/>
<br/>
<br/>-------Complete story-----<br/>1- First news headline story<br/>
<br/>Some detailed news story will apprear related to first headline<br/>
<br/>
<br/>2- Second news headline story<br/>
<br/>Some details about second news story will be inserted here<br/>
</p>
</story>
</root>
は私の入力XMLであると第三者によって提供されているため、変更することはできません。今私はすべてのhtmlマークアップを保持して2つのノードに分割したいと思います。出力XMLは以下のようにする必要があります:
<root>
<headlines>
<p>Headlines:<br/>1- First news headline<br/>2- Second news headline<br/>
<br/>
<br/>-------</p>
</headlines>
<stories>
<p>Complete story-----<br/>1- First news headline story<br/>
<br/>Some detailed news story will apprear related to first headline<br/>
<br/>
<br/>2- Second news headline story<br/>
<br/>Some details about second news story will be inserted here<br/>
</p>
</stories>
</root>
あなたは、元の<p></p>
タグが2つの段落に分割されていることを観察することがあります。それを変換することができる適切なxsltで助けてください。
これまでに何を試しましたか? – zx485