仅使用 xslt 1.0 小写字符串的第一个字符
我已经看到模式 对于那些使用 xslt 1.0 的人来说,使用 translate 函数将字符串翻译成小写(或大写)。
有没有一种优雅的方法可以将字符串的第一个字母变成小写?
TestCase => testCase
I have seen patterns for translating a string into lower (or upper case) using the translate function for folks stuck using xslt 1.0.
Is there a elegant way of just making the first letter of a string lowercase?
TestCase => testCase
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
例如,如果您的字符串位于名为
name
的属性中:If your string were, for example, in an attribute called
name
:您应该能够组合 substring 和 concat 与翻译类似:
You should be able to combine substring and concat with translate to do it like so:
使用 XPath
translate
函数,将字符串分成第一个字符和其余字符。 这将需要使用多个变量来保存中间结果的冗长 XSLT。Use the XPath
translate
function, having separated the string into first character and the rest. This will require somewhat long winded XSLT using multiple variables to hold intermediate results.XSLT 有一个子字符串函数,因此您可以将该模式与子字符串函数结合使用来获得您想要的内容。
XSLT has a substring function, so you could use that pattern with the substring function to get what you want.