VTL中的递增操作

发布于 2024-10-20 10:23:52 字数 332 浏览 1 评论 0原文

我正在尝试使用 VTL 中的子字符串方法,如下所述,

#set ($Score = $row.getValue("Score").substring(0,$row.getValue("Score").length()-1))

但它显示

    Encountered "-1" at 
Was expecting one of:
   "," ...
   ")" ...
   <WHITESPACE> ...
   <DOT> ...

请帮助我解决此问题。

谢谢 基肖尔

I am trying to use the substring method in VTL as mentioned below

#set ($Score = $row.getValue("Score").substring(0,$row.getValue("Score").length()-1))

but it says

    Encountered "-1" at 
Was expecting one of:
   "," ...
   ")" ...
   <WHITESPACE> ...
   <DOT> ...

Please help me in resolving this issue.

Thanks
Kishore

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

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

发布评论

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

评论(1

傾旎 2024-10-27 10:23:52
#set( $value = $row.getValue("Score") )
#set( $len = $value.length() - 1 )
#set( $Score = $value.substring(0, $len))

或者,如果你使用 VelocityTools,你可以做这个丑陋的事情:

#set( $Score = $row.getValue("Score").substring(0, $math.sub($row.getValue("Score").length(), 1) )
#set( $value = $row.getValue("Score") )
#set( $len = $value.length() - 1 )
#set( $Score = $value.substring(0, $len))

or, if you are using VelocityTools, you can do this ugly thing:

#set( $Score = $row.getValue("Score").substring(0, $math.sub($row.getValue("Score").length(), 1) )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文