StringTemplate 设置列表中最后一项的格式
我正在使用 StringTemplate 生成源代码,我需要呈现一个语句列表,我希望除最后一个之外的所有语句都用“;\n”分隔,但将最后一个语句格式化为包含在“返回项;\n”中 我可以在模板中实现这一点还是必须手动进行一些预处理?
$call.stmts:{$it$;} ;separator="\n"$
目前我正在使用上面的。
I am generating source using StringTemplate, I need to render a list of statements I want all but last to be separated with a ";\n" but format last one to be wrapped in a "return item;\n"
can i achieve this in the template or do i have to do some preprocessing manually?
$call.stmts:{$it$;} ;separator="\n"$
Currently I am using the above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 trunc() 函数获取列表中除最后一个元素之外的所有内容,并使用 last() 方法获取最后一个元素,如所述 此处
Try using the trunc() function to get everything in the list but the last element, and the last() method to get the last element, as described here