XSLT将XML标签包装在一些自由文本周围

时间:2018-08-08 14:17:50

标签: xml xslt-1.0

我有一个返回一些未格式化文本的函数。接下来的处理要求数据为XML格式。我以为XSLT可以在文本的两边添加一些XML标记,但是我一直在努力寻找一个示例,并将我可以找到的示例转换为可行的示例。

例如,我要处理的文本如下所示:

This is the first line of some unformatted text.
This is another.
…
…
This is the last line.

我正在寻找的输出看起来像:

<TextItems>
  <TextItem name="Returned Text">
    This is the first line of some unformatted text.
    This is another.
    …
    …
    This is the last line.
  </TextItem>
</TextItems>

使用XSLT可以吗?
如果是这样,应该怎么做?

0 个答案:

没有答案