本文介绍了有没有“优雅"测试属性值是否以字母开头的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要测试一个属性值是否以字母开头.如果不是,我会在它前面加上ID_",这样它就会是一个有效的 id 类型的属性值.我目前有以下内容(测试值不以数字开头 - 我知道这些属性值只会以字母或数字开头),但我希望有一种更优雅的方式:
I need to test whether an attibute value starts with a letter. If it doesn't I'll prefix it with "ID_" so it will be a valid id type of attribue value. I currently have the following (testing that the value does not start with a number - I know these attribute values will only start with a letter or number), but I am hoping there is an more elegant way:
<xsl:if test="not(starts-with(@value, '1')) and not(starts-with(@value, '2')) and not(starts-with(@value, '3')) and not(starts-with(@value, '4')) and not(starts-with(@value, '5')) and not(starts-with(@value, '6')) and not(starts-with(@value, '7')) and not(starts-with(@value, '8')) and not(starts-with(@value, '9')) and not(starts-with(@value, '0')) ">
我使用的是 XSLT 1.0.提前致谢.
I'm using XSLT 1.0.Thanks in advance.
推荐答案
使用:
not(number(substring(@value,1,1)) = number(substring(@value,1,1)) )
或使用:
not(contains('0123456789', substring(@value,1,1)))
最后,这可能是验证您的条件的最短 XPath 1.0 表达式:
not(number(substring(@value, 1, 1)+1))
这篇关于有没有“优雅"测试属性值是否以字母开头的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!