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.
我可以fn:length(mystring)用来查找字符串的长度/字符数。
fn:length(mystring)
如何找到整数的长度/位数?
例如,如果我的 int 是 3000,我想返回 4。
通过将其String评估为的主体将其转换为<c:set>:
String
<c:set>
<c:set var="intAsString">${someInt}</c:set>
然后你可以用通常的方式得到它的长度:
${fn:length(intAsString)}