替换 xslt 中的字符串

发布于 2024-10-28 12:20:30 字数 209 浏览 1 评论 0原文

我使用的是xslt1.0。我的输入是

<xsl:variable name="string">width:12pt;border-width:13pt</xsl:variable>

我想将 -width: 替换为其他字符串,但不是宽度:(以 - 开头的宽度应该单独替换)。如何在 xslt 1.0 中执行此操作。

I am using xslt1.0. My input is

<xsl:variable name="string">width:12pt;border-width:13pt</xsl:variable>

I want to replace the -width: into some other string, but not the width:(width starting with - alone should replaced).How to do it in xslt 1.0.

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

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

发布评论

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

评论(1

颜漓半夏 2024-11-04 12:20:30

XSLT 1.0 中没有替换功能。您可以在此处找到(XSLT 中的 String.Replace())一个可以做到这一点的模板。

你可以这样使用它:

<xsl:variable name="string">
  <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text" select="width:12pt;border-width:13pt" />
    <xsl:with-param name="replace" select="-width" />
    <xsl:with-param name="by" select="other-string" />
  </xsl:call-template>
</xsl:variable>

There is no replace function in XSLT 1.0. You can find here (String.Replace() in XSLT) a template that can do that.

You can use it like this:

<xsl:variable name="string">
  <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text" select="width:12pt;border-width:13pt" />
    <xsl:with-param name="replace" select="-width" />
    <xsl:with-param name="by" select="other-string" />
  </xsl:call-template>
</xsl:variable>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文