如何避免从字符串变量中获取重复的字符串?

发布于 2024-11-08 14:00:54 字数 643 浏览 0 评论 0原文

我有一个包含字符串值的变量 serviceProvideList

我使用以下代码分别获取每个字符串:

<xsl:variable name="tokenizedSample" select="str:tokenize($serviceProvideList,'&#xa;')"/>

<xsl:for-each select="$tokenizedSample">
  <xsl:variable name="weakProvide" select="."/>
  <xsl:variable name="tokenized" select="str:tokenize($weakProvide,' ')"/>

  <xsl:for-each select="$tokenized">
    <xsl:variable name="weakP" select="."/>
    <xsl:value-of select="$weakP"/> 
  </xsl:for-each>
</xsl:for-each>

如何避免变量 serviceProvideList 中重复值?

I have a variable serviceProvideList that contains string values.

I use following code to get each string separately:

<xsl:variable name="tokenizedSample" select="str:tokenize($serviceProvideList,'
')"/>

<xsl:for-each select="$tokenizedSample">
  <xsl:variable name="weakProvide" select="."/>
  <xsl:variable name="tokenized" select="str:tokenize($weakProvide,' ')"/>

  <xsl:for-each select="$tokenized">
    <xsl:variable name="weakP" select="."/>
    <xsl:value-of select="$weakP"/> 
  </xsl:for-each>
</xsl:for-each>

How can I avoid repeating values in the variable serviceProvideList?

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

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

发布评论

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

评论(1

月下伊人醉 2024-11-15 14:00:54

for-each 循环中排除具有相同值的前缀的标记:

<xsl:for-each select="$tokenizedSample[ not(preceding-sibling::* = .) ]">

Exclude tokens, which have precedings with same value, from for-each loop :

<xsl:for-each select="$tokenizedSample[ not(preceding-sibling::* = .) ]">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文