Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题...我需要在我的网站上从数据库中显示一些价格。我正在使用此功能向他们展示:
<xsl:value-of select="entry/name"/>
我的问题是:由于“排序原因”,我需要输入如下值:0800(800 美元)。如果它是“0”(零),是否有一个 xml 过滤器/函数可以删除第一个数字?非常感谢
如果您的姓名仅包含十进制数字,请执行
<xsl:value-of select='format-number(entry/name, "#")'/>
它将去除数字开头的所有零。