加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java – JSP字符串格式截断

发布时间:2020-12-14 05:37:18 所属栏目:Java 来源:网络整理
导读:有没有人知道如何使用标签库在JSP中截断字符串?我要使用 Jakarta Taglibs,但是说它已经退休,因为: With the advent of JSTL,the core features of many of the libraries had been standardized and the need for these libraries diminished. As such,muc
有没有人知道如何使用标签库在JSP中截断字符串?我要使用 Jakarta Taglibs,但是说它已经退休,因为:

With the advent of JSTL,the core features of many of the libraries had been standardized and the need for these libraries diminished. As such,much of the Taglibs codebase moved into maintenance mode.

解决方法

您可以使用 JSTL substring function:
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>

${fn:substring(myVariable,5)}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读