如何为 XSLT 中的两组元素生成相同的随机数?

发布于 2025-01-09 06:51:24 字数 650 浏览 0 评论 0原文

输入:

<paragraph>
      <bq>34152</bq>
      <eq>52325/eq>
      <private type="DOB">SP1</private>
      <bq>12431</bq>
      <abc>EX</abc>
      <eq>31333</eq>
</paragraph>

预期输出:

<paragraph>
          <bq>55124</bq>
          <eq>55124</eq>
          <private type="DOB">SP1</private>
          <bq>66565</bq>
          <abc>EX</abc>
          <eq>66565</eq>
</paragraph>

如何使用 apply-templates 为每个 bq 和 eq 集生成相同的随机数?

Input:

<paragraph>
      <bq>34152</bq>
      <eq>52325/eq>
      <private type="DOB">SP1</private>
      <bq>12431</bq>
      <abc>EX</abc>
      <eq>31333</eq>
</paragraph>

Expected Output:

<paragraph>
          <bq>55124</bq>
          <eq>55124</eq>
          <private type="DOB">SP1</private>
          <bq>66565</bq>
          <abc>EX</abc>
          <eq>66565</eq>
</paragraph>

How to use apply-templates to generate same random number for every bq and eq set?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

離殇 2025-01-16 06:51:24

在 XSLT 3 中(例如使用随机数生成器),它可以归结为

  <xsl:accumulator name="rng" as="map(*)" initial-value="random-number-generator(current-dateTime())">
    <xsl:accumulator-rule match="paragraph/bq" select="$value?next()"/>
  </xsl:accumulator>
  
  <xsl:template match="paragraph/bq | paragraph/eq" expand-text="yes">
    <xsl:copy>{round(accumulator-before('rng')?number * 100000)}</xsl:copy>
  </xsl:template>

  <xsl:mode on-no-match="shallow-copy" use-accumulators="rng"/>

需要 Saxon HE 10 或更高版本、Saxon PE/EE 9.8 或更高版本或 Saxon-JS 2。

In XSLT 3 (e.g. with random-number-generator) it would boil down to

  <xsl:accumulator name="rng" as="map(*)" initial-value="random-number-generator(current-dateTime())">
    <xsl:accumulator-rule match="paragraph/bq" select="$value?next()"/>
  </xsl:accumulator>
  
  <xsl:template match="paragraph/bq | paragraph/eq" expand-text="yes">
    <xsl:copy>{round(accumulator-before('rng')?number * 100000)}</xsl:copy>
  </xsl:template>

  <xsl:mode on-no-match="shallow-copy" use-accumulators="rng"/>

That requires Saxon HE 10 or later or Saxon PE/EE 9.8 or later or Saxon-JS 2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文