欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Freemarker 进行字符串截取

程序员文章站 2022-07-14 09:53:54
...

当字符串长度大于某一个值时,进行截取,使用下面的方式:thing.title?length gt 33

<#if thing.title?length gt 33>
	${thing.title?substring(0,30)}...
<#else>${thing.title!} 
</#if>

当然,也可以对thing.title 外面添加括号,(thing.title)?length gt 33