JSTL 字符串长度判断并截取

应用场景:

如新闻列表展现时,超过长度的新闻截取前几个文字,后边的用 ... 表示。如下图所示:



参考代码:


	
  • ${fn:substring(news.writetime,0,10)} ${fn:substring(news.title,0,13)}... ${news.title}


  • 你可能感兴趣的:(02,Jsp)