0

我的 XSLT 样式表中有这样的 C# 函数:

<xsl:stylesheet ...
    xmlns:utils="urn:local">

<msxsl:script language="CSharp" implements-prefix="utils">
    <![CDATA[
    public XmlDocument dateSplit(string str)
    {
      XmlDocument doc = new XmlDocument();
      XmlElement root = doc.CreateElement(string.Empty, "root", string.Empty);

      Regex rgx = new Regex("(?:(\\d{1,2})\\.(\\d{1,2})\\.)?(\\d{4})?");
      Match match = rgx.Match(str);

      XmlElement yearElem = doc.CreateElement(string.Empty, "year", string.Empty);
      XmlElement monthElem = doc.CreateElement(string.Empty, "month", string.Empty);
      XmlElement dayElem = doc.CreateElement(string.Empty, "day", string.Empty);

      if (match.Success) {

        string dayVal = match.Groups[1].Value;
        string monthVal = match.Groups[2].Value;
        string yearVal = match.Groups[3].Value;

        if (dayVal != "" && monthVal != "" && yearVal != "") {

          XmlText dayText = doc.CreateTextNode(dayVal.PadLeft(2, '0'));
          XmlText monthText = doc.CreateTextNode(monthVal.PadLeft(2, '0'));
          XmlText yearText = doc.CreateTextNode(yearVal);

          dayElem.AppendChild(dayText);
          monthElem.AppendChild(monthText);
          yearElem.AppendChild(yearText);

        } else if (yearVal != "") {

          XmlText yearText = doc.CreateTextNode(yearVal);
          yearElem.AppendChild(yearText);

        }
      }
      root.AppendChild(yearElem);
      root.AppendChild(monthElem);
      root.AppendChild(dayElem);

      doc.AppendChild(root);
      return doc;
    }
    ]]>
  </msxsl:script>

它将“1960”变成<year>1960</year>“4.7.2016”<year>2016</year><month>07</month><day>04</day>等等。

为了将元素添加year的输出 XML 中...monthday

<someOtherStuff>...</someOtherStuff>
<year>2016</year>
<month>07</month>
<day>04</day>
<moreStuff>...</moreStuff>

...我必须使用这样的功能:

<xsl:copy-of select="utils:dateSplit(myInput)/root/*"/>

我无法避免函数<root>中的辅助元素dateSplit(),因为XmlDocument必须是格式良好的(只有顶层的单个元素)。不可能将多个元素附加到根。

是否有替代方法,例如ResultTreeFragment,它不能确保格式正确以避免人为和临时<root>元素?

4

1 回答 1

1

如果您XmlDocumentFragment使用CreateDocumentFragement创建一个,那么您可以将元素添加到该片段并返回它而不是 XmlDocument:

 <msxsl:script language="CSharp" implements-prefix="utils">
    <![CDATA[
    public XmlDocumentFragment dateSplit(string str)
    {
      XmlDocument doc = new XmlDocument();
      XmlDocumentFragment docFrag = doc.CreateDocumentFragment();

      // ...

      docFrag.AppendChild(yearElem);
      docFrag.AppendChild(monthElem);
      docFrag.AppendChild(dayElem);

      return docFrag;

然后像这样使用它:

<xsl:copy-of select="utils:dateSplit(myInput)"/>
于 2016-06-08T18:52:06.943 回答