Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのように行われたxmlを解析しようとしています:
<foreign lang="gre">‘<LM lemma="auieo" catg="fg">auieo</LM>’</foreign>
Xstreamを使用していて、特定のConverterを作成しようとしましたが、機能しません:(外部のコンテンツを'text'ブロックとLemmaxmlで分割する方法がわかりません(特定のそのためのコンバーター)
Xstream は混合コンテンツを解析できません。次のコマンドを使用して、xml を xslt で前処理し、混合されていない xml に変換しました。
<xsl:template match="text()"> <t> <xsl:value-of select="."/> </t> </xsl:template>